
/* Container */
.container { max-width: 1300px; margin: 0 auto; }
.max-container { margin: 0 auto; max-width: 1440px;}
.mobile-container { max-width: 414px; margin: 0 auto; }

/* Clear */
.clear { clear: both !important; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Floats */
.float-left { float: left; }
.float-right { float: right; }
.left { float: left !important; }
.right { float: right !important; }
.clearfix::after { content: ""; display: table; clear: both; }

/* Backgrounds */
.bg-white {background: #fff;}
.bg-black { background: #000; }
.bg-grey { background: #f0f3f5; }
.bg-dark {background-color: #191919;}
.bg-primary { background: #00ADB5;}
.bg-secondary {background: #151515;}
.bg-third { background: #222831; }

/* Colors */
.text-white { color: #fff; }
.text-black { color: #000; }
.text-primary { color: #213555; }
.text-secondary { color: #3E5879; }

/* Borders */
.border { border: 1px solid #565656 }
.border-t {border-top: 1px solid #56565633;}
.border-b { border-bottom: 1px solid #565656; }
.border-l { border-left: 1px solid #565656 }
.border-r { border-right: 1px solid #565656 }

/* Borders Radius */
.br-100 { border-radius: 100px;}
.br-2 { border-radius: 2px;}
.br-3 { border-radius: 3px;}
.br-4 { border-radius: 4px;}
.br-5 { border-radius: 5px;}
.br-6 { border-radius: 6px;}
.br-7 { border-radius: 7px;}
.br-8 { border-radius: 7px;}

/* Padding */
.p-5 { padding: 5px; }
.p-10 { padding: 10px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.pt-5 { padding-top: 5px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pb-5 { padding-bottom: 5px; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pl-5 { padding-left: 5px; }
.pl-10 { padding-left: 10px; }
.pl-20 { padding-left: 20px; }
.pr-5 { padding-right: 5px; }
.pr-10 { padding-right: 10px; }
.pr-20 { padding-right: 20px; }


/* Margin */
.m-5 { margin: 5px; }
.m-10 { margin: 10px; }
.m-20 { margin: 20px; }
.mt-5 { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 {margin-bottom: 20px;}
.mb-30 { margin-bottom: 30px; }
.ml-5 { margin-left: 5px; }
.ml-10 { margin-left: 10px; }
.ml-20 { margin-left: 20px; }
.mr-5 { margin-right: 5px; }
.mr-10 { margin-right: 10px; }
.mr-20 { margin-right: 20px; }
.mb-1 { margin-bottom: 1px; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center, .center { text-align: center; }
.text-right { text-align: right; }

/* Text Size */
.text-uppercase { text-transform: uppercase; }
.text-10 { font-size: 10px; }
.text-12 { font-size: 12px; }
.text-14 { font-size: 14px; }
.text-16 {font-size: 16px;}
.text-18 { font-size: 18px; }
.text-20 { font-size: 20px; }
.text-22 { font-size: 22px; }
.text-24 { font-size: 24px; }
.text-26 { font-size: 26px; }
.text-28 { font-size: 28px; }
.text-30 { font-size: 30px; }
.text-32 { font-size: 32px; }

/* Font Weight */
.weight-100 { font-weight: 100; }
.weight-200 { font-weight: 200; }
.weight-300 { font-weight: 300; }
.weight-400 { font-weight: 400; }
.weight-500 { font-weight: 500; }
.weight-600 { font-weight: 600; }
.weight-700 { font-weight: 700; }
.weight-800 { font-weight: 800; }
.weight-900 { font-weight: 900; }

/* Font Weight */
.space-nowrap { white-space: nowrap;}

/* Flexbox */
.flex {   display: -webkit-box;  display: -ms-flexbox;  display: flex; }
.flex-row {   -webkit-box-orient: horizontal;  -webkit-box-direction: normal;  -ms-flex-direction: row;  flex-direction: row; }
.flex-col {   -webkit-box-orient: vertical;  -webkit-box-direction: normal;  -ms-flex-direction: column;  flex-direction: column; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.mx-auto { margin-left: auto; margin-right: auto;}

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-5 { gap: 5px; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.align-space-between { align-content: space-between; }

/* Positioning */
.relative {position: relative;}
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

/* Overflow */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-x-scroll { overflow-x: scroll; }
.overflow-y-scroll { overflow-y: scroll; }

/* Transitions */
.transition-all { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
.transition-colors { transition: background-color 0.3s ease, color 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-999 { z-index: 999; }

/* Width */
.width-full { width: 100%; }

/* Line Clamp */
.line-clamp-1 { -webkit-box-orient: vertical; -webkit-line-clamp: 1; display: -webkit-box; display: -ms-flexbox; display: box; overflow: hidden; }
.line-clamp-2 { -webkit-box-orient: vertical; -webkit-line-clamp: 2; display: -webkit-box; display: -ms-flexbox; display: box; overflow: hidden; line-height: 1.4; }

/* The Header */
.header {border-bottom: 2px solid #980000;}
.header-box {height: 100px;}
.menu_sticky { position: sticky; top: 0; z-index: 999;}
#sticky-header {position: sticky;top: 0;z-index: 999;}
.header-menu .current-menu-item { background: #2f2e2e; }
.sub-cat-header { background: #2f2e2e; }
.header-menu li .sub-menu { display: none; }
.header-menu li a {display: block;padding: 14px 10px;position: relative;text-align: center;text-transform: uppercase;color: #fffdfd;font-weight: 700;font-size: 16px;}
.header-menu li a:hover {background: #980000;background-color: #e51010;background-image: -webkit-linear-gradient(bottom, #7e0c0c, #e51010);background-image: linear-gradient(0deg, #7e0c0c, #e51010);background-repeat: no-repeat;}
.header-menu li:after { border: 1px solid #a9a9a9; height: 10px; position: absolute; right: -5px; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }
.header-menu li:last-child:after { border: none; }
.header-menu ul { display: flex; }
.header-center {width: 444px;}
.header-search-button {flex: 0 0 80px;}
.header-menu .current-menu-item a::after, .header-menu .current-menu-parent a::after  {color: white;border-bottom: 5px solid #b00e0e;content: '';display: block;width: 100%;position: absolute;bottom: 0;left: 0;}
.mobile-header-box {height: 70px;}
.progress-container { width: 100%; height: 0px; background: #ccc; position: fixed; top: 0; left: 0; z-index: 9999; }
.progress-bar {height: 5px;width: 0%;background: linear-gradient(to right, black 0%, #570000 16.66%, #940202 33.33%, #b10101 50%, #cc0000 66.66%, #db0202 83.33%, #e40d0d 100%);}

/* Mobile Header */
.mheader-sticky { position: sticky; top: 0; z-index: 9999; transition: top 0.3s; animation: slideDown 0.3s forwards; }
@keyframes slideDown { 0% { top: -100px; } 100% { top: 0; } }
.menu-overlay-open {background-color: #000000bd;height: 100vh;left: 0;position: absolute;top: 0;width: 100%;z-index: 999;}
.mobile-menu-open {height: 100vh;top: 0;left: 0;position: absolute;width: 300px;z-index: 999;}
.mobile-menu-scroll {height: 100vh;overflow: scroll;}
.menu-item {position: relative;white-space: nowrap;width: 100%;}
.mobile_menu_container li a {border-bottom: 1px solid #56565633;display: block;padding: 8px 20px;text-transform: uppercase;font-weight: 700;font-size: 20px;}
.mobile_menu_container li:before {bottom: 0;content: '';left: 0px;margin: 6px 0;position: absolute;top: 0;width: 6px;background: #000000;border-top-right-radius: 10px;border-bottom-right-radius: 10px;}
.mobile_menu_container li a:after { background-image: url(../images/arrow-next.svg); background-position: right; background-repeat: no-repeat; background-size: 15px; content: ""; width: 20px; height: 20px; position: absolute; right: 0; top: 50%; transform: translate(-50%, -50%); }
.mobile-search.show-mobile-search {display: block;position: fixed;top: 70px;left: 0;right: 0;bottom: 0;background: #ffffff;z-index: 9999;}
.body-menu-open, .body-search-open { overflow: hidden; }
.mobile-search { display: none; }
.mobile-menu-none { display: none; }

/* Mobile Home */
.mobile-posts-list-img {flex: 0 0 111px;flex-shrink: 0;margin-right: 5px;overflow: hidden;position: relative;height: 70px;}
.mobile-posts-list-img img { width: 100%; height: 100%; object-fit: cover; }
.mobile-posts-list-title { width: 100%;}

/* The Home Categories */
.crumbs a, .current {font-weight: 200;}
.cat-home-name {font-size: 26px;}
.cat-home-name:before {bottom: 0;content: '';left: 0px;margin: 8px 0;position: absolute;top: 0;width: 8px;border-top-right-radius: 10px;border-bottom-right-radius: 10px;}
.category-name-box { margin-bottom: 1px; position: relative; }
.category-name-box .view-all {background: #f0f3f5;padding: 8px 20px;}  
.category-name-box:hover .view-all {background: #000000;color: #ffffff;}
.mobile-view-all {padding: 8px 16px;}
.category-one:before,.mobile_menu_container li:nth-child(1):before {background: #f00606;}
.category-two:before,.mobile_menu_container li:nth-child(2):before {background: #ff982e;}
.category-three:before,.mobile_menu_container li:nth-child(3):before { background: #212121; }
.category-four:before,.mobile_menu_container li:nth-child(4):before {background: #2640ea;}
.category-five:before,.mobile_menu_container li:nth-child(5):before {background: #1aa1ea;}
.category-six:before,.mobile_menu_container li:nth-child(6):before {background: #ff1a67;}
.category-seven:before,.mobile_menu_container li:nth-child(7):before {background: #FBC02D;}
.category-eighth:before,.mobile_menu_container li:nth-child(8):before {background: #2dc2a8;}
.category-nine:before,.mobile_menu_container li:nth-child(9):before {background: #7B1FA2;}
.category-ten:before,.mobile_menu_container li:nth-child(10):before {background: #188f1d;}
.category-eleven:before,.mobile_menu_container li:nth-child(11):before {
    background: radial-gradient(circle, red, orange, yellow, green, blue, indigo, violet);
    }
.category-twelve:before,.mobile_menu_container li:nth-child(12):before {background: #f95015;}
.home-grid-post-img {height: 222px;overflow: hidden;}
.home-grid-post-img .single-img,.grid-post-img img, .single-post-img img, .related-post-img img { width: 100%; height: 100%; object-fit: cover;}
.home-post-img { width: 100%; height: 100%; object-fit: cover;}
.grid-post-img {height: 222px;overflow: hidden;}
.content {width: 960px;flex: 0 0 auto;flex-shrink: 0;}
.single-post-img {height: 510px;overflow: hidden;}
.single-author-profile-img {    border: 2px solid #e8e8e8;}
.sidebar {flex-basis: 320px;width: 320px;flex-shrink: 0;margin-left: 20px;}
.sidebar-sticky { position: sticky; top: 10px; }
.relatet-text-name:before {bottom: 0;content: '';left: 0px;margin: 10px 0;position: absolute;top: 0;width: 8px;background-color: #e40d0d;border-top-right-radius: 10px;border-bottom-right-radius: 10px;}
.mobile-relatet-text-name:before {bottom: 0;content: '';left: 0px;margin: 10px 0;position: absolute;top: 0;width: 6px;background-color: #e40d0d;border-top-right-radius: 10px;border-bottom-right-radius: 10px;}
.relatet-text-name {letter-spacing: 1px;text-transform: uppercase;}
.relatet-text .view-all {background: #f0f3f5;padding: 8px 20px;}
.relatet-text:hover .view-all a {    background: #000000;    color: #ffffff;}
.related-post-img {height: 222px;overflow: hidden;}
.col-left { flex: 0 0 750px; margin-right: 10px; flex-shrink: 0; }
.single-img { width: 100%; }
.single-img:hover { opacity: 0.8;}
.popular-small-ititle { line-height: 1.6;}
.col-right { flex: 0 0 520px; flex-shrink: 0; }
.popular-small:last-child { margin-bottom: 0px; border-bottom: 0; padding-bottom: 0px; }
.popular-small { margin-bottom: 5px; border-bottom: 1px solid #e9e9e9; padding-bottom: 5px; }
.popular-small-img {width: 150px;height: 100px;flex: 0 0 150px;flex-shrink: 0;overflow: hidden;margin-right: 10px;}
.popular-small-right { width: 100%; }
.popular-small-img img { width: 100%; height: 100%; object-fit: cover; }
.posts-content-img {height: 222px;overflow: hidden;}
.posts-content-descripition {width: 100%;display: grid;align-content: space-between;}
.posts-list-img { flex: 0 0 auto; width: 330px; height: 200px; margin-right: 10px;}

/* Slider Home */
.mobile-popular-slider { position: relative; overflow: hidden; }
.popular-posts-slide { display: none; }
.popular-posts-slide.active { display: block; }
.popular-slider-nav {position: absolute;top: 70px;left: 0;right: 0;display: flex;justify-content: space-between;}
.hero-prev, .hero-next {opacity: 0.5;background: #ffffff;height: 60px;width: 60px;}
.hero-prev:hover, .hero-next:hover {opacity: 1;}
.slider-dots {display: flex;justify-content: center;margin-top: 10px;margin-bottom: 10px;}
.slider-dot {width: 10px;height: 6px;background-color: #929292;margin: 0 2px;cursor: pointer;display: block;flex-shrink: 0;flex-basis: 14px;padding: 0;}
.slider-dot.active {background-color: #bd0101;}
.mobile-slider-warpper { position: relative; }
.story-slider-warpper { width: 300px; margin: 0 auto; height: 533px; background: black; }
.story-logo { padding: 20px; width: 100%; margin: 0 auto; text-align: center; }
.story-title { display: block; margin-bottom: 10px;  text-transform: uppercase; padding: 0 25px; color: white; }
.story-post-title { color: white; font-size: 20px; text-transform: uppercase; padding: 0 15px; display: block; }
.story-web-link { display: block; color: white; }
.story-slider-screenshot, .screenshot-download { background: black; padding: 10px; display: block; width: 150px; margin: 10px auto; }
.sub-cat-header .cat-item a {padding: 12px 20px;display: block;color: #ffffff;border-right: 1px solid #f0f3f5;text-transform: uppercase;}
.cat-item { position: relative; }
.cat-item:hover a:after { color: white; border-bottom: 4px solid #ca0000; content: ''; display: block; width: 100%; position: absolute; bottom: 0; left: 0; }
.archive-crumbs { letter-spacing: 1px; text-transform: uppercase; }
.archive-posts-count { white-space: nowrap;}
.page-not-found { height: 100vh; }
.page-not-found { background-image: url(../images/page-not-found-texatur.svg); background-position: center center; background-size: 150px;}
.author-posts-content-img {    width: 333px;    flex: 0 0 auto;}
.author-posts-content-descripition {    width: 100%;}
.button-primary { border-radius: 4px; display: inline-block; padding: 15px 30px; font-weight: 700; color: white; border: 2px solid #950000; background-color: #d32323; background-image: linear-gradient(to top, #a70707, #ca0101); }
.button-primary:hover { background-color: #d32323; background-image: linear-gradient(to top, #870000, #d60000);}
.content-text img { width: 100%; }
.content-text p iframe, .content-text iframe { width: 100%; }
.content-text, .content-text p {font-size: 20px;font-family: "Mulish", sans-serif;word-spacing: 1px;line-height: 1.6;margin-bottom: 10px;font-weight: 500;}
.content-text p br { content: ""; display: block; margin-bottom: 15px; }
.content-text ul, .content-text ol {margin-left: 30px;}
.content-text ul li {font: 18px Helmet, Freesans, Helvetica, Arial, sans-serif;list-style: disc;line-height: 1.5;margin-bottom: 10px;}
.content-text ol li {font: 18px Helmet, Freesans, Helvetica, Arial, sans-serif;list-style: number;line-height: 1.5;margin-bottom: 10px;}
.source-link {font-weight: 700;text-align: right;display: block;font-size: 16px;}
.tags-single {display: flex;flex-direction: row;flex-wrap: wrap;/* -webkit-transform: skew(-14deg, 0deg); *//* transform: skew(-14deg, 0deg); */}
.tags-single a:before { .tags-singlea:before;bottom: 0;content: '';left: 0px;position: absolute;top: 0;width: 6px;background-color: #e40d0d;border-top-right-radius: 10px;border-bottom-right-radius: 10px;}
.tags-single a {display: inline-block;padding: 2px 10px;margin: 4px;border-top: 1px solid #000000;border-bottom: 1px solid #000000;border-right: 1px solid #000000;color: #000000;text-decoration: none;font-size: 14px;position: relative;}
.tags-single a:hover { background: #ebebeb; color: #333;}
.tags-single a:hover::before {  background-color: #e40d0d;}
.mobile-single-header { position: absolute; left: 0; top: 0; right: 0; }
.history-butons a { padding: 10px 20px; font-size: 36px; display: block; color: #ffffff; }
.mobile-sub-cat-header .cat-item a {background: #000000;color: #ffffff;padding: 10px;white-space: nowrap;display: block;margin-right: 1px;}
.mobile-sub-cat-header {overflow: overlay;overflow-x: scroll;}
.footer-menu li a { padding: 10px; }
.footer-menu-float li a { padding: 5px; display: block; }
.footer-menu-float li a:after, .author-list-li a:after { background-image: url(../images/arrow-next.svg); background-position: right; background-repeat: no-repeat; background-size: 10px; content: ""; width: 20px; height: 20px; position: absolute; right: 0; top: 50%; transform: translate(-50%, -50%); }

/* Exchange */
.pagination .prev, .pagination .next {background: #ffffff;padding: 10px 20px;}
.pagination .current {background: #000000;padding: 10px;color: white;width: 60px;font-size: 18px;font-weight: 700;text-align: center;border-radius: 100px;}
.emty-space {padding-bottom: 150px;}

/* Share Overly */
.share-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: none; justify-content: center; align-items: center; z-index: 2000; }
.share-overlay-active { display: flex; }
.share-modal {padding: 30px;border-radius: 15px;position: relative;max-width: 400px;width: 100%;animation: modalSlide 0.3s ease-out;margin: 15px;}
.share-close-btn { position: absolute; top: 5px; right: 10px; background: none; font-size: 36px; cursor: pointer; color: #676767; padding: 5px; }
.close-btn:hover { color: #333; }
.share-show { overflow: hidden;}
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }
.share-btn-email { background: #ea4335; }
.share-btn-link { background: #9b59b6; }
.link-copied { background: #722b8f; }   
@keyframes modalSlide { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Exchange */
.curency-box {margin: 0 5px 0px 5px;background: #ffffff;color: #000000;position: relative;font-size: 20px;}
.monedh-box {padding: 24px 8px 12px 8px;border-right: 1px solid #f0f3f5;width: 100%;text-align: center;}
.valut-text {width: 32px;height: 22px;display: inline-block;}
.selling, .buying {color: #ff7600;background: #f0f3f5;padding: 4px 10px;border-radius: 4px;}
.change-up { color: #137333; background: #e6f4ea; font-weight: bold; }
.change-down { color: #c5221f; background: #fce8e6; font-weight: bold; }
.selling:after {content: "SHITET";position: absolute;left: 0;right: 0;top: -15px;font-size: 10px;font-weight: 400;text-align: center;text-transform: uppercase;white-space: nowrap;}
.buying:after {content: "BLIHET";position: absolute;left: 0;right: 0;top: -15px;font-size: 10px;font-weight: 400;text-align: center;text-transform: uppercase;}
.exchange-content-scroll, .exchange-content-box { white-space: nowrap; border: 1px solid #f0f3f5; border-right: none; overflow: auto; scrollbar-width: none; -ms-overflow-style: none; }
.mobile-menu-scroll::-webkit-scrollbar, .exchange-content-scroll::-webkit-scrollbar, .exchange-content-box::-webkit-scrollbar, .mobile-sub-cat-header::-webkit-scrollbar { display: none;  }

.subscription-btn {border-radius: 3px;padding: 10px 28px;font-size: 14px;color: white;text-align: center;background-color: #e51010;background-image: -webkit-linear-gradient(bottom, #7e0c0c, #e51010);background-image: linear-gradient(0deg, #7e0c0c, #e51010);background-repeat: no-repeat;}
.subscription-btn:hover { background-color: #d32323; background-image: linear-gradient(to top, #870000, #d60000);}
.subscriber-content { border: 1px solid #ededed; box-shadow: 4px 4px 10px #e7e7e7;}
.home-blocks {display: none;opacity: 0;transition: opacity 0.5s ease-in-out;}
.home-blocks.visible { display: block; opacity: 1; }
.related-blocks { display: none; opacity: 0; transition: opacity 0.5s ease-in-out; min-height: 200px; }
.related-blocks.visible { display: block; opacity: 1; }
#backToTopBtn { display: none; position: fixed; bottom: 40px; right: 40px; z-index: 999; padding: 14px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); transition: background-color 0.3s;  }
#backToTopBtn:hover { background-color: #555; } 

/* Dark mode switcher */
.wpnm-button-inner-left:before,.wpnm-button-inner-left:after{box-sizing:border-box;margin:0;padding:0;transition: .2s ease-in-out;outline:none;}
.wpnm-button .wpnm-button-inner-left:before{content:'';display:block;position:absolute;z-index:1;height: 20px;width: 20px;margin: 4px;border-radius:100%;right: 22px;bottom: 0px;background:#FFB200;transform:rotate(-45deg);box-shadow:0 0 .625em #fff;}
.wpnm-button .wpnm-button-inner-left:after{content:'';display:inline-block;width: 50px;height: 28px;border-radius: 100px;background:rgba(255,255,255,0.15);vertical-align:middle;border: 2px solid #FFB200;}
.dark-mode-active .wpnm-button-inner-left:before{right: 6px;box-shadow: 4px 4px 0 0 #eee;background:transparent}
.dark-mode-active .wpnm-button-inner-left:after{background:#000;border:.125em solid #fff}
.dark-mode {background: #505050;}
.dark-mode .bg-white {background: #303030;color: #ececec;}
.dark-mode .bg-grey {background: #3e3e3e;color: #ececec;}
.dark-mode .bg-dark-mode {    background: #505050;    color: white;    border: 1px solid #000000;}
.dark-mode a, .dark-mode .text-black {color: white;}
.dark-mode  .svg-icon {filter: brightness(0) saturate(100%) invert(1);}

.city-news-name {
    padding: 8px 14px;
    font-size: 18px;
    border-right: 1px solid #f0f3f5;
}

.city-news-list {
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
}


.city-news-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.slider-arrow {
    background: #ffffff;
    flex: 0 0 32px;
    border-left: 1px solid #f0f3f5;
    border-right: 1px solid #f0f3f5;
}




.weather-info {
    flex-direction: column;
    flex-wrap: wrap;
}

.images-copyright {    border-top-right-radius: 6px;}