@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&subset=cyrillic-ext");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a:hover {
    text-decoration: none;
    color: #0b78cc;
}
img {
    max-width: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 26px;
    height: 100%;
    font-weight: 400;
    overflow-x: hidden;
    background-color: #f3f3f9;
    padding-top: 50px;
}
.font-size-18 {
    font-size: 18px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-14 {
    font-size: 14px;
}
.font-size-13 {
    font-size: 13px;
}

.font-bold {
    font-weight: 700;
}

.leading-loose {
    line-height: 1.6;
}

.text-grey {
    color: #575c65;
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3 ease;
}

.text-white-60:hover {
    color: rgba(255, 255, 255, 1);
}

.row.gutter-6 {
    margin-left: -3px;
    margin-right: -3px;
}
.row.gutter-6 > div {
    padding-left: 3px;
    padding-right: 3px;
}

.row.gutter-10 {
    margin-left: -5px;
    margin-right: -5px;
}
.row.gutter-10 > div {
    padding-left: 5px;
    padding-right: 5px;
}

.position-relative {
    position: relative;
}
.u-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.z-index-2 {
    z-index: 2;
}

.mb-6 {
    margin-bottom: 6px;
}

.site-header {
    background: #0e0522;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.header-dropdown-inner {
    border-top:3px solid #F2D95C;
    background: #0e0522;
}

.header-dropdown-inner h4 {
   color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
}

.header-dropdown-inner li {
   color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
}

.header-dropdown-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
   
}

.site-header-inner {
    height: 56px;
}

.site-header .logo {
    margin-right: 40px;
}

@media (min-width: 1200px) {
    .site-header {
        padding-left: 45px;
    }
}

main {
    padding: 20px 0 0 45px;
}

.sidebarmenu {
    position: fixed;
    left: 0;
    top: 0;
    width: 45px;
    height: 100vh;
    background-color: #0e0522;
    z-index: 99;
    overflow-x: hidden;
    transition: width 0.2s ease;
}
.sidebarmenu .sidebarmenu-scroll {
    padding-top: 50px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: -25px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.location-list {
    width: 45px;
    transition: width 0.2s ease;
}
.location-list li {
    width: 240px;
    background: #0e0522;
    border-top: 1px solid rgb(56 51 68);
}
.location-list li:hover {
    background-color: #222;
}
.location-list li a {
    color: rgb(176, 176, 176);
}
.location-list li:hover a {
    color: rgba(255, 255, 255, 1);
}

.location-list li i {
    width: 25px;
    height: 25px;
    background: rgba(0, 0, 0, 0.5);
    font-style: normal;
    line-height: 25px;
    text-align: center;
    border-radius: 100%;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 11px;
}
.location-list li a {
    height: 45px;
    padding-left: 10px;
    font-weight: 400;
    font-size: 12px;
}
.location-list li span {
    height: 45px;
    width: 45px;
}

.sidebarmenu:hover {
    width: 240px;
}
.sidebarmenu:hover .location-list {
    width: 240px;
}

.site_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 9999;
    opacity: 0.5;
    display: none;
}

/* push nav */
.push-nav-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
}
.push-nav {
    line-height: 24px;
    background: #fff;
    position: fixed;
    width: 300px;
    max-width: 90%;
    height: 100%;

    box-shadow: none;

    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);

    top: 0;
    right: 0;
    z-index: 10000;

    -webkit-transition: transform 0.3s ease, box-shadow 0.3s;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s;
    -o-transition: transform 0.3s ease, box-shadow 0.3s;
    transition: transform 0.3s ease, box-shadow 0.3s;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile_nav_visible .push-nav {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);

    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.push_nav_menu > ul {
    list-style-type: none;
    padding: 0 0;
    margin: 0;
}
.push_nav_menu > ul > li:not(:last-child) {
}

.push_nav_menu > ul > li > a {
    font-size: 15px;
    color: #0c0c4c;
    display: block;
    padding: 4px 0;
    -moz-transition: color 0.4s ease;
    -ms-transition: color 0.4s ease;
    -o-transition: color 0.4s ease;
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
    position: relative;
    padding-right: 30px;
    font-weight: 500;
}

.push_nav_menu > ul > li > a:hover {
    color: #333;
}
.push_nav_menu > ul > li > a:hover,
.push_nav_menu > ul > li > a:link,
.push_nav_menu > ul > li > a:active {
    text-decoration: none !important;
}

.push_nav_menu > ul > li > a.open {
    color: #000 !important;
}

.push_nav_menu > ul > li.has-sub-menu > a:after {
    right: 0;
    position: absolute;
    color: #666;
    font-size: 15px;
    content: "\f105";
    font-family: "FontAwesome";
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

.push_nav_menu > ul > li.has-sub-menu > a.open:after {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.side_menu_block {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

/** Mobile menu LEVEL - 2 **/
.push_nav_menu > ul ul {
    list-style-type: none;
    padding: 0 0 0 20px;
    margin: 0;
    display: none;
}
.push_nav_menu > ul ul li {
    padding: 5px 0;
}
.push_nav_menu > ul ul a {
    display: block;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}
.push_nav_menu > ul ul a:hover {
    color: #444;
}

/* mobile menu */
.mobile-menu-icon {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
    opacity: 0.95;
}
.mobile-menu-icon:hover {
    opacity: 1;
}

.mobile-menu-icon i {
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    top: 8px;
}
.mobile-menu-icon i:after,
.mobile-menu-icon i:before {
    content: "";
    height: 3px;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    transition: 0.2s ease;
}
.mobile-menu-icon i:after {
    bottom: -7px;
}
.mobile-menu-icon i:before {
    top: -7px;
}

.mobile-menu-icon:hover i:after {
    bottom: -8px;
}
.mobile-menu-icon:hover i:before {
    top: -8px;
}

.icon-play {
    width: 30px;
    height: 30px;
    background: rgba(0, 23, 236, 0.85);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 2px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

@media (max-width: 1399.99px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .top-news-right .row div.col-md-6.col-lg-6:nth-child(1),
    .top-news-right .row div.col-md-6.col-lg-6:nth-child(2) {
        margin-bottom: 6px;
    }
}

@media (max-width: 991.99px) {
    .top-news-item {
        margin-bottom: 6px;
    }
}

.top-news-image {
    overflow: hidden;
}

.top-news-title {
    padding: 40px 30px 10px 20px;
    background-color: transparent;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(transparent),
        to(rgba(4, 15, 23, 0.9))
    );
    background: -webkit-linear-gradient(top, transparent, rgba(4, 15, 23, 0.9));
    transition: padding-bottom 0.2s ease;
}

.top-news-title h3 {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.top-news-item:hover .top-news-title h3 {
    color: #fff;
}

@media (min-width: 992px) {
    .top-news-left .top-news-title {
        padding: 100px 40px 30px 30px;
    }
    .top-news-left .top-news-title h3 {
        font-size: 30px;
        line-height: 34px;
        font-weight: 600;
    }

    .top-news-left .top-news-item:hover .top-news-title {
        padding-bottom: 35px;
    }
    .top-news-item:hover .top-news-title {
        padding-bottom: 15px;
    }
}

.top-news-item {
    border-radius: 5px;
    overflow: hidden;
}

.top-news-item .top-news-image {
    position: relative;
}

.top-news-item .top-news-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(28, 30, 41, 0.25);
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
}

.top-news-item:hover .top-news-image:before {
    opacity: 1;
}

.top-news-item .top-news-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.top-news-item:hover .top-news-image img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    transform: scale(1.08);
}

.text-sm {
    font-size: 13px;
}
.border-radius {
    border-radius: 2px;
}

.share-facebook,
.share-twitter {
    color: rgba(255, 255, 255, 0.85);
    transition: 0.3s ease;
    line-height: 1;
}

.share-facebook {
    background-color: #3e5ba9;
}
.share-facebook:hover {
    background-color: #2248b1;
    color: rgba(255, 255, 255, 85);
}

.share-twitter {
    background-color: #1da1f3;
}
.share-twitter:hover {
    background-color: #0989d8;
    color: rgba(255, 255, 255, 0.85);
}

blockquote {
    font-size: 20px;
    border-left: 3px solid #0d43cc;
    line-height: 1.6;
    margin: 30px 0 30px 0;
    padding: 30px 30px;
    background-color: #fff;
    text-align: left;
    font-weight: 600;
    color: #000;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.cat-label {
    background-color: rgba(0, 23, 236, 0.75);
    line-height: 1.2;
    height: 20px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 1px;
}

.submenu span
{
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
}

.main-menu li {
    margin-right: 20px;
}
.main-menu li a {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
}
.main-menu li a:hover {
    color: rgba(255, 255, 255, 1);
}

.n-2-image {
    overflow: hidden;
}
.n-2-image img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.n-2:hover .n-2-image img {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.n-2 .n-2-title {
    padding: 15px 10px;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
}

.n-2 .n-2-title h3 {
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
}
.n-2 .n-2-title h3 a {
    color: #333;
    -moz-transition: color 0.3s ease 0s;
    -ms-transition: color 0.3s ease 0s;
    -o-transition: color 0.3s ease 0s;
    -webkit-transition: v 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}
.n-2:hover h3 a {
    color: #09094c;
}

.n-2 .n-2-title .date {
    color: #888;
    font-size: 12px;
}

.bg-dark {
    background-color: #0c0c13 !important;
}
.section-video {
    padding: 50px 0;
}

.bg-dark .n-2 .n-2-title {
    background-color: #111;
    border: 0 none;
}
.bg-dark .n-2 .n-2-title h3 a {
    color: rgba(255, 255, 255, 0.65);
}

.bg-dark .n-2:hover .n-2-title h3 a {
    color: rgba(255, 255, 255, 1);
}

.bg-cover {
    background-size: cover;
    background-position: center center;
}

.bg-overlay {
    position: relative;
}
.bg-overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.bg-overlay > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 767.99px) {
    .top-news-title {
        padding-right: 20px;
    }
    .top-news-title h3 {
        font-size: 16px;
        font-weight: 600;
    }

    .n-2 .n-2-title {
        padding: 15px;
    }
    .n-2 .n-2-title h3 {
        font-size: 15px;
        line-height: 20px;
        font-weight: 600;
    }
}

.category-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}
.category-title h4 {
    font-size: 24px;
    text-transform: uppercase;
    color: #0c0c4c;
    font-weight: 700;
    letter-spacing: -1px;
}

.location-list li {
    transition: 0.2s ease;
    opacity: 0.75;
}
.location-list:hover li {
    opacity: 1;
}

.location-list li i {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.2s ease;
}

.location-list li:hover i {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.location-list li a {
    font-size: 14px;
    transition: 0.2s ease;
}

.location-list li:nth-child(1) i {
    background-color: #ee7183;
}
.location-list li:nth-child(1):hover {
    background-color: #ee7183;
}

.location-list li:nth-child(2) i {
    background-color: #717dee;
}
.location-list li:nth-child(2):hover {
    background-color: #717dee;
}

.location-list li:nth-child(3) i {
    background-color: #ad309a;
}
.location-list li:nth-child(3):hover {
    background-color: #ad309a;
}

.location-list li:nth-child(4) i {
    background-color: #5db3a0;
}
.location-list li:nth-child(4):hover {
    background-color: #5db3a0;
}

.location-list li:nth-child(5) i {
    background-color: #bc4477;
}
.location-list li:nth-child(5):hover {
    background-color: #bc4477;
}

.location-list li:nth-child(6) i {
    background-color: #3395fa;
}
.location-list li:nth-child(6):hover {
    background-color: #3395fa;
}

.location-list li:nth-child(7) i {
    background-color: #c29743;
}
.location-list li:nth-child(7):hover {
    background-color: #c29743;
}

.location-list li:nth-child(8) i {
    background-color: #378a7a;
}
.location-list li:nth-child(8):hover {
    background-color: #378a7a;
}

.location-list li:nth-child(9) i {
    background-color: #db4646;
}
.location-list li:nth-child(9):hover {
    background-color: #db4646;
}

.location-list li:nth-child(10) i {
    background-color: #c45d28;
}
.location-list li:nth-child(10):hover {
    background-color: #c45d28;
}

.location-list li:nth-child(11) i {
    background-color: #5d4fb1;
}
.location-list li:nth-child(11):hover {
    background-color: #5d4fb1;
}

.location-list li:nth-child(12) i {
    background-color: #926325;
}
.location-list li:nth-child(12):hover {
    background-color: #926325;
}

.location-list li:nth-child(13) i {
    background-color: #159b96;
}
.location-list li:nth-child(13):hover {
    background-color: #159b96;
}

.location-list li:nth-child(14) i {
    background-color: #28bf79;
}
.location-list li:nth-child(14):hover {
    background-color: #28bf79;
}

.location-list li:nth-child(15) i {
    background-color: #273bf2;
}
.location-list li:nth-child(15):hover {
    background-color: #273bf2;
}

.location-list li:nth-child(16) i {
    background-color: #ceae1a;
}
.location-list li:nth-child(16):hover {
    background-color: #ceae1a;
}

.location-list li:nth-child(17) i {
    background-color: #ffab3d;
}
.location-list li:nth-child(17):hover {
    background-color: #ffab3d;
}

.location-list li:nth-child(17) i {
    background-color: #8437a8;
}
.location-list li:nth-child(17):hover {
    background-color: #8437a8;
}

.location-list li:nth-child(17) i {
    background-color: #8437a8;
}
.location-list li:nth-child(17):hover {
    background-color: #8437a8;
}

.location-list li:nth-child(18) i {
    background-color: #308236;
}
.location-list li:nth-child(18):hover {
    background-color: #308236;
}

.location-list li:nth-child(19) i {
    background-color: #ae2e2f;
}
.location-list li:nth-child(19):hover {
    background-color: #ae2e2f;
}

.location-list li:nth-child(20) i {
    background-color: #4ebbaf;
}
.location-list li:nth-child(20):hover {
    background-color: #4ebbaf;
}

.ad-row label {
    font-weight: 600;
    color: #0c0c4c;
    margin-top: 5px;
    font-size: 15px;
}

.text-red {
    color: #eb2121;
}

.list-select-ad-images > div {
    width: 33%;
    padding: 5px;
}

@media (min-width: 576px) {
    .list-select-ad-images > div {
        width: auto;
    }
}

.list-select-ad-images {
    margin: 0 -5px;
}

.select-ad-image {
    background-color: #fff;
    border: 2px solid #ccc;
    overflow: hidden;
}

.select-ad-image:not(.image-loaded) {
    cursor: pointer;
}

.select-ad-image:before {
    padding-top: 100%;
    display: block;
    content: "";
}

.select-ad-image img {
    max-width: 100%;
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.ad-row .form-control {
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    color: #111;
    border: 2px solid #ccc;
}

select.form-control:not([size]):not([multiple]) {
    height: auto !important;
}

.select-ad-image {
    position: relative;
    border-radius: 4px;
}

.select-ad-image > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.select-ad-image:after {
    position: absolute;
    content: "+";
    font-size: 30px;
    line-height: 36px;
    color: #bd2130;
    font-weight: 400;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 40px;
    width: 40px;
    text-align: center;
    border: 2px solid #bd2130;
    border-radius: 50%;
    z-index: 1;
}

.select-ad-image:hover {
    background-color: #bd2130;
}

.select-ad-image:hover:after {
    color: rgba(255, 255, 255, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.select-ad-image.loading:after {
    opacity: 0;
}

.select-ad-image.loading > div {
    background: url("/images/Spinner-1s-168px.svg") no-repeat 50% 50%;
    background-size: 100px 100px;
}

.select-ad-image > div .img-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.select-ad-image > div .img-container img {
    z-index: 1;
}

.select-ad-image > div .img-container span.remove {
    z-index: 2;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.65) url(/images/remove.png) no-repeat 50% 50%;
    cursor: pointer;
}

.select-ad-image > div .img-container span.remove:hover {
    background-color: rgba(0, 0, 0, 0.85);
}

#images_buffer {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.font-narrow {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.aimag-menu li a {
    font-size: 15px;
    color: #95959e;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-block;
}

.aimag-menu li a.active {
    color: #0144ff;
}
.aimag-menu li a.ad {
    background: #0165fd;
    color: rgba(255, 255, 255, 0.85);
    padding: 5px 15px;
}












.emoji {
    width: 120px;
    height: 120px;
    margin: 15px 15px 40px;
    background: #FFDA6A;
    display: inline-block;
    border-radius: 50%;
    position: relative;
}

.emoji:after {
    position: absolute;
    bottom: -40px;
    font-size: 18px;
    width: 40px;
    left: calc(50% - 30px);
    color: #8A8A8A;
}

.emoji__face,
.emoji__eyebrows,
.emoji__eyes,
.emoji__mouth,
.emoji__heart,
.emoji__hand,
.emoji__thumb {
    position: absolute;
}

.emoji__face:before,
.emoji__face:after,
.emoji__eyebrows:before,
.emoji__eyebrows:after,
.emoji__eyes:before,
.emoji__eyes:after,
.emoji__mouth:before,
.emoji__mouth:after,
.emoji__tongue:after,
.emoji__heart:before,
.emoji__heart:after,
.emoji__hand:before,
.emoji__hand:after,
.emoji__thumb:before,
.emoji__thumb:after {
    position: absolute;
    content: '';
}

.emoji__face {
    width: inherit;
    height: inherit;
}

.emoji--like {
    background: #548DFF;
}

.emoji--like:after {
    content: 'Зөв';
}

.emoji--like .emoji__hand {
    left: 25px;
    bottom: 30px;
    width: 20px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 5px;
    z-index: 0;
    animation: hands-up 2s linear infinite;
}

.emoji--like .emoji__hand:before {
    left: 25px;
    bottom: 5px;
    width: 40px;
    background: inherit;
    height: 10px;
    border-radius: 2px 10px 10px 2px;
    box-shadow: 1px -9px 0 1px #FFFFFF, 2px -19px 0 2px #FFFFFF, 3px -29px 0 3px #FFFFFF;
}

.emoji--like .emoji__thumb {
    border-bottom: 20px solid #FFFFFF;
    border-left: 20px solid transparent;
    top: -25px;
    right: -25px;
    z-index: 2;
    transform: rotate(5deg);
    transform-origin: 0% 100%;
    animation: thumbs-up 2s linear infinite;
}

.emoji--like .emoji__thumb:before {
    border-radius: 50% 50% 0 0;
    background: #FFFFFF;
    width: 10px;
    height: 12px;
    left: -10px;
    top: -8px;
    transform: rotate(-15deg);
    transform-origin: 100% 100%;
    box-shadow: -1px 4px 0 -1px #FFFFFF;
}

.emoji--love {
    background: #F55064;
}

.emoji--love:after {
    content: 'Love';
}

.emoji--love .emoji__heart {
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    animation: heart-beat 1s linear infinite alternate;
}

.emoji--love .emoji__heart:before,
.emoji--love .emoji__heart:after {
    left: calc(50% - 20px);
    top: calc(50% - 32px);
    width: 40px;
    height: 64px;
    background: #FFFFFF;
    border-radius: 20px 20px 0 0;
}

.emoji--love .emoji__heart:before {
    transform: translate(20px) rotate(-45deg);
    transform-origin: 0 100%;
}

.emoji--love .emoji__heart:after {
    transform: translate(-20px) rotate(45deg);
    transform-origin: 100% 100%;
}

.emoji--wow:after {
    content: 'Wow';
}

.emoji--wow .emoji__face {
    animation: wow-face 3s linear infinite;
}

.emoji--wow .emoji__eyebrows {
    left: calc(50% - 3px);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: transparent;
    box-shadow: -18px 0 0 0 #000000, -33px 0 0 0 #000000, 18px 0 0 0 #000000, 33px 0 0 0 #000000;
    animation: wow-brow 3s linear infinite;
}

.emoji--wow .emoji__eyebrows:before,
.emoji--wow .emoji__eyebrows:after {
    width: 24px;
    height: 20px;
    border: 6px solid #000000;
    box-sizing: border-box;
    border-radius: 50%;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    top: -3px;
    left: calc(50% - 12px);
}

.emoji--wow .emoji__eyebrows:before {
    margin-left: -25px;
}

.emoji--wow .emoji__eyebrows:after {
    margin-left: 25px;
}

.emoji--wow .emoji__eyes {
    width: 16px;
    height: 24px;
    left: calc(50% - 8px);
    top: 35px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 25px 0 0 0 #000000, -25px 0 0 0 #000000;
}

.emoji--wow .emoji__mouth {
    width: 30px;
    height: 45px;
    left: calc(50% - 15px);
    top: 50%;
    border-radius: 50%;
    background: #000000;
    animation: wow-mouth 3s linear infinite;
}



@keyframes heart-beat {
    25% {
        transform: scale(1.1);
    }

    75% {
        transform: scale(0.6);
    }
}

@keyframes wow-face {

    15%,
    25% {
        transform: rotate(20deg) translateX(-25px);
    }

    45%,
    65% {
        transform: rotate(-20deg) translateX(25px);
    }

    75%,
    100% {
        transform: rotate(0deg) translateX(0);
    }
}

@keyframes wow-brow {

    15%,
    65% {
        top: 25px;
    }

    75%,
    100%,
    0% {
        top: 15px;
    }
}

@keyframes wow-mouth {

    10%,
    30% {
        width: 20px;
        height: 20px;
        left: calc(50% - 10px);
    }

    50%,
    70% {
        width: 30px;
        height: 40px;
        left: calc(50% - 15px);
    }

    75%,
    100% {
        height: 50px;
    }
}

@keyframes hands-up {
    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg) translateY(-10px);
    }

    75%,
    100% {

        transform: rotate(0deg);
    }
}

@keyframes thumbs-up {
    25% {
        transform: rotate(20deg);
    }

    50%,
    100% {
        transform: rotate(5deg);
    }
}

.site-footer {
        background-color: #0c0c13;
        padding-left: 40px;
    }

@media (max-width: 576px) {
 .site-footer ul
 {
    display: none !important;
 }

   

}

  .site-footer a i.fa
 {
    color: rgba(255, 255, 255, 0.5);
 } 

  .site-footer a i.fa:hover
 {
    color: rgba(255, 255, 255, 1);
 } 

.category-title img
{
    width: 30px;
    border-radius: 50%;
}


                    .font-bold {
                        font-weight: bold;
                    }

                    .font-size-14 {
                        font-size: 14px;
                    }

                    .font-size-18 {
                        font-size: 18px;
                    }

                    .n-3-title h3 {
                        font-size: 18px;
                        font-weight: 700;
                        line-height: 1.4;
                        max-width: 80%;
                    }

                    .n-3-title h3 a {
                        color: #101033 !important
                    }

                    .n-3-image {
                        border-radius: 5px;
                        overflow: hidden;
                    }

                    .n-3 .n-3-image img {
                        transform: scale(1);
                        transition: transform 0.2s ease;
                    }

                    .n-3:hover .n-3-image img {
                        transform: scale(1.08)
                    }




.flex-container {
  display: flex;
  padding: 0;
}
.flex-container li {
  list-style: none;
  flex-grow: 1;
}

.reaction {
  background-color: #e6e6e6;
  order: 3;
  position: relative;
  border: 1px solid #d9d9d9;
  text-align: center;
}

.reaction div {
  text-align: center;
}

.reaction img
{
    width: 40px;
    margin: 0px;
    padding: 0px;
}

.reaction span.word{
  color: #333;
  position: absolute;
  text-transform: uppercase;
  font-size: 14px;
  visibility: hidden;
  bottom: 20px;
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 

}

.reaction span.number{
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 

}


.reaction:hover {
  background-color: #fff;
}

.reaction img:hover {
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari 3-8 */
  transform: scale(1.2); 
}

.reaction:hover span.word{
  visibility: visible;
  bottom: -35px;
}

.reaction:hover span.number{
  top: -45px;
}



.twitter, 
.facebook,
.linkedin,
.codepen,
.dribbble,
.twitter:hover, 
.facebook:hover, 
.linkedin:hover,
.codepen:hover,
.dribbble:hover {
  transition: background-color .5s ease;
}
.flex-container a {
  display: block;
}
.flex-container i {
  color: #fff;
  line-height: 60px;
  width: 100%;
  text-align: center;
}






.flex-container1 {
  display: flex;
  margin: 80px 0 0;
  padding: 0;
}

@media (max-width: 576px) 
{
    .flex-container1 {
          display: flex;
          margin: 80px 0 0;
          padding: 0;
        }

}


.flex-container1 li {
  list-style: none;
  flex-grow: 1;
}

.reaction1 {

  position: relative;
  text-align: center;
}

.reaction1 div {
  text-align: center;
}

.reaction1 img
{
    width: 40px;

    position: absolute;
    top:-50px;
    left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
}


@media (max-width: 576px) {
.reaction1 img
 {
    width: 28px !important;
 }
 }

.reaction1 span.word{
  color: #333;
  position: absolute;
  text-transform: uppercase;
  font-size: 14px;
  visibility: hidden;
  bottom: 20px;
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 

}




.reaction1 span.number{
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 

}

@media (max-width: 576px) 
{
    .reaction1 img:hover {
      -ms-transform: scale(1.2); /* IE 9 */
      -webkit-transform: scale(1.2); /* Safari 3-8 */
      transform: scale(1.2); 
      top: -50px;
      transform: rotateY(180deg);
      -webkit-transition: -webkit-transform 0.5s ease-in;
    }

}

 .reaction1 img:hover {
      -ms-transform: scale(1.2); /* IE 9 */
      -webkit-transform: scale(1.2); /* Safari 3-8 */
      transform: scale(1.2); 
      transform: rotateY(180deg);
      -webkit-transition: -webkit-transform 0.2s ease-in;
    }



.reaction1:hover span.word{
  visibility: visible;
  bottom: -35px;
}

.reaction1:hover span.number{
  top: -45px;
}




.reaction1:hover {
  transition: background-color .5s ease;
}
.flex-container1 a {
  display: block;
}
.flex-container1 i {
  color: #fff;
  line-height: 60px;
  width: 100%;
  text-align: center;
}



.site-header-inner li img
{
   width: 23px;
}

#newsend
{
    cursor: pointer;
}



.social-share {margin-bottom:26px;}
.social-share > div {float:left;margin-right:20px;}
.social-share > div span {vertical-align:top!important;}



.font-bold {
                        font-weight: bold;
                    }

                    .font-size-14 {
                        font-size: 14px;
                    }

                    .font-size-18 {
                        font-size: 18px;
                    }

                    .n-3-title h3 {
                        font-size: 18px;
                        font-weight: 600;
                        line-height: 1.3;
                        max-width: 80%;
                    }

                    .n-3-title h3 a {
                        color: #101033 !important
                    }

                    .n-3-image {
                        border-radius: 5px;
                        overflow: hidden;
                    }

                    .n-3 .n-3-image img {
                        transform: scale(1);
                        transition: transform 0.2s ease;
                    }

                    .n-3:hover .n-3-image img {
                        transform: scale(1.08)
                    }


.post_single_title {
        font-size: 28px;
        font-weight: 700;
        color: #111;
    }

    .article-content *:last-child {
        margin-bottom: 0;
    }





                    .font-bold {
                        font-weight: bold;
                    }

                    .font-size-14 {
                        font-size: 14px;
                    }

                    .font-size-18 {
                        font-size: 18px;
                    }

                    .n-3-title h3 {
                        font-size: 18px;
                        font-weight: 700;
                        line-height: 1.4;
                        max-width: 80%;
                    }

                    .n-3-title h3 a {
                        color: #101033 !important
                    }

                    .n-3-image {
                        border-radius: 5px;
                        overflow: hidden;
                    }

                    .n-3 .n-3-image img {
                        transform: scale(1);
                        transition: transform 0.2s ease;
                    }

                    .n-3:hover .n-3-image img {
                        transform: scale(1.08)
                    }
    
.video-journalist img
{
    width: 30px;
    border-radius: 50%
}