:root{
    --orange: #FF5744;
    --bg: #faf5ed;
    --hover-trans: all .3s ease-in;

    /* font vars */
    --font-book: 'airbnb_cerealbook', sans-serif;
    --font-extra-bold: 'airbnb_cerealextrabold', sans-serif;


    /* weights */
    --fw100: 100;
    --fw200: 200;
    --fw300: 300;
    --fw400: 400;
    --fw500: 500;
    --fw600: 600;
    --fw700: 700;
    --fw800: 800;
    --fw900: 900;

    /* constatns */
    --header-height-desktop: 175px;

}

@font-face {
    font-family: 'airbnb_cerealbook', sans-serif;
    src: url('../fonts/airbnbcereal-book-webfont.eot');
    src: url('../fonts/airbnbcereal-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/airbnbcereal-book-webfont.woff2') format('woff2'),
         url('../fonts/airbnbcereal-book-webfont.woff') format('woff'),
         url('../fonts/airbnbcereal-book-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'airbnb_cerealextrabold', sans-serif;
    src: url('../fonts/airbnbcereal-extrabold-webfont.eot');
    src: url('../fonts/airbnbcereal-extrabold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/airbnbcereal-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/airbnbcereal-extrabold-webfont.woff') format('woff'),
         url('../fonts/airbnbcereal-extrabold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{overflow-x: hidden;}

.f-book{font-family: var(--font-book)!important;}
.f-x-bold{font-family: var(--font-extra-bold)!important;}

.fw100{font-weight: var(--fw100)!important;}
.fw200{font-weight: var(--fw200)!important;}
.fw300{font-weight: var(--fw300)!important;}
.fw400{font-weight: var(--fw400)!important;}
.fw500{font-weight: var(--fw500)!important;}
.fw600{font-weight: var(--fw600)!important;}
.fw700{font-weight: var(--fw700)!important;}
.fw800{font-weight: var(--fw800)!important;}
.fw900{font-weight: var(--fw900)!important;}

/* gap */
header,
#last-News, #advert, #header-slider,
nav#navigation + div,
.footer > .container,
.swiper-slide > .col{
    padding: 0!important;
}

/* header */

header #search-top form input{
    width: 140px;
    font-size: 12px;
    line-height: 16px;
    color: #1B2D49;
}

header #search-top form input::-webkit-input-placeholder {color: #1B2D49!important;}
header #search-top form input::-moz-placeholder {color: #1B2D49!important;}
header #search-top form input:-ms-input-placeholder {color: #1B2D49!important;}
header #search-top form input:-moz-placeholder {color: #1B2D49!important;}
header #search-top form input::placeholder {color: #1B2D49!important;}

/* menu anim */

nav{
    border-left: 0;
    border-right: 0;
    position:relative;
}

nav .nav-item,
.footer-list li a{
    position:relative;
    display: inline-block;
}

nav .nav-item:not(.only-mobile-logo)::after,
.footer-list li a::after{
    content: ' ';
    position:absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2.5px;
    background: var(--orange);
    transition: var(--hover-trans);
}

nav .nav-item.active::after,
nav .nav-item:hover::after,
.footer-list li a.active::after,
.footer-list li:hover a::after{
    width: 100%;
}

/* alert vertical layout */

nav#navigation + div [role="alert"] > .float-right{
    display:flex;
    align-items: center;
}

/* footer links style fix */

.footer-list li a.active{
    border:unset!important;
}

.footer-list li a{
    color: transparent;
    transition: var(--hover-trans);
}

.footer-list li:hover a{
    text-decoration: none;
    color: var(--orange)!important;
}

/* footer social hover opa */

.footer-social li a:hover{
    cursor:pointer;
    opacity: .7;
}

/* pagination fix */

.swiper-footer{
    position:relative;
    width: 100%;
}

.swiper-footer .swiper-pagination{
    /* rm col-1 */
    width: auto!important;
    flex: 0 0 auto!important;
    max-width: none!important; /* maybe: max-content!important */
}

.swiper-footer .prev-next{
    /* rm col-11 -> col-12 */
    width: 100%!important;
    flex: 0 0 100%!important;
    max-width: 100%!important;
    padding: 0;
    position: absolute;
}

.swiper-footer .prev-next::before{
    top: 10px;
}

.swiper-footer .swiper-pagination::before,
.swiper-footer .prev-next::after{
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--bg);
    z-index: -1;
}

.swiper-footer .prev-next::after{
    left: unset;
    width: calc(33.6px * 2 + 4px); /* pagination arrow width: 33.6px, 4px is between gap */
}

/* title color to general */
.headline-color{
    color: #e40421!important;
    font-size: 2rem;
    font-weight: 700;
}

.headline-color > span{
    color: #1b2d49!important;
}


/* first(header) fix pagination slider */

.carousel-indicators{
    display:flex!important;
    right:unset;
    left:unset;
    margin:unset;
    margin: 5px;
}

.carousel-indicators li{
    width:auto;
    height: unset;
    text-indent: unset;
    background:transparent;
    border:unset;
    color: #fff;
    text-shadow: 1px 1px 2px black; /* mobile fix */
}

.last-news-home .card-img {
    max-height: 130px;
    overflow: hidden;
}

.last-news-home .card-img img {
    min-height: 130px;
}

/* last news mt null */

.last-news{
    margin-top: 0;
}

/* detail */

#breadcrumb > nav{
    border:none;
}

.last-news-home {
    display: inline-block;
    width: 100%;
    height: 500px;
    padding-bottom: 30px !important;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    z-index: 1;
}

.last-news-home .swiper-slide {
    height: 210px;
}

.last-news-home .swiper-pagination-bullet {
    width: auto;
    margin-right: 10px;
    background: transparent;
    color: #535355 !important;
}

.last-news-home .prev-next span {
    color: #fff;
}

.breadcrumb{
    align-items:center;
    margin:0!important;
    background:transparent;
    padding-left:0;
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item+.breadcrumb-item::before
{
    color: #B8B8B7!important;
    font-size: 13px;
}

.breadcrumb-item+.breadcrumb-item::before{
    content: '>';
}


.carousel-pagination-wrapper .carousel-control-prev,
.carousel-pagination-wrapper .carousel-control-next{
    left:unset!important;
}

.carousel-pagination-wrapper .carousel-control-prev{
    right: calc(38px + 4px)!important;
}

.carousel-pagination-wrapper .carousel-control-next{
    right: 3px!important;
}

.detail-content-wrapper{
    position:relative;
    top: 0;
    margin-top: 30px;
}

.detail-content-wrapper h2{
    font-weight: var(--fw600);
    font-size: 22px;
    line-height: 1.4;
    color: #1B2D49;
}

.detail-content-wrapper .content-section p {
    /*font-weight: var(--fw300);
    font-size: 22px;
    line-height: 1.45;
    color: #1B2D49;*/
}

.virtual-selected{
    position:relative;
    color: #1B2D49;
    padding: 0 4px 0 2px;
}

.virtual-selected::after{
    content: ' ';
    z-index: -1;
    position: absolute;
    left: 0;right: 0;top: 0;bottom: 0;
}

.virtual-selected.rose-bud::after{
    background: #FABEA1;
}

.virtual-selected.marigold-yellow::after{
    background: #F8E177;
}


.swiper-slide [class*="col"]:not(:last-child) .swiper-slide-content-for-gap-calculator{
    margin-right: 1.5rem;
}

.doviz-card img{
    width: 100%;
}

/* revises */

nav .nav-item > .nav-link {
    font-size: 14px;
    font-weight: var(--fw300)!important;
}

nav .nav-item.active > .nav-link {
    font-weight: var(--fw700)!important;
}

header .tickers li a,
header .tickers li span{
    font-size: 9.6px!important;
}

header .tickers li a{
    padding-left: 0;
    font-weight: var(--fw900)!important;
}

header .tickers li span{
    font-weight: var(--fw400)!important;
}

.tickers li{
    align-items: end;
}

.carouse-item-content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

#header-slider .xl-headline{
    color: #1B2D49;
    font-size: 50px;
}

#header-slider .slider-links a{
    font-weight: var(--fw700);
    font-size:14px;
    line-height: 20px;
    font-family: var(--font-book);
}

.advert-item{
    transition: var(--hover-trans);
    opacity: 1.0;
    position:relative;
}

.advert-item button.close{
    position:absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin: 10px;
    background: transparent;
    color: #fff;
    opacity: 1;
    text-shadow: 1px 1px 1px #000;
}

.last-news .card .healine-card{
    margin-top: 0;
    font-size: 14px;
    line-height: 30px;
    color: #1B2D49;
}

.last-news .card .healine-card + a.stretched-link{
    font-size: 14px;
    line-height: 20px;
    color: #1B2D49;
    font-weight: var(--fw400);
    font-family: var(--font-book);
}

.privacy-news .bottom-news .card{
    width: 100%;
}

.col-bottom-news{
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.col-bottom-news:not(:first-child) .card{
    padding: 0 15px;
}

.col-bottom-news:first-child .card{
    padding-right: 30px;
}

.privacy-news.seperate-bottom .swiper-wrapper{
    justify-content: space-between;
}

.privacy-news.seperate-bottom .bottom-news{
    position:relative;
}

.right-vertical-stick.bottom-news::after{
    content: ' ';
    position: absolute;
    right:15px;
    height: 25%;
    top: 25%;
    background:#1B2D49;
    opacity: .32;
    width: 0.5px;
}

.green-up, .red-down, .tab-pane a{
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.1px;
    font-weight: var(--fw700)!important;
}

.green-up, .red-down{
    font-family: var(--font-book);
}

.doviz-tab .nav-link{
    padding: 5px 20px;
    font-size: 10.9591px;
    line-height: 24px;
    letter-spacing: 0.0803666px;
    font-weight: var(--fw700)!important;
    font-family: var(--font-book);
}

.doviz-tab .nav-link:not(:last-child){
    margin-right: 20px;
}

.swiper-gold .news-text{
    padding: 20px 0;
    font-size: 16px;
    line-height: 23px;
    color: #1B2D49;
    font-weight: var(--fw400)!important;
    font-family: var(--font-book);
}

/* content images mobile fix */
.detail-content-wrapper .content-section img{
    max-width: 100%!important;
    margin: 20px auto;
    height: auto;
}

.detail-page .carousel-item img{
    max-height: 400px;
}

.privacy-news.seperate-bottom.exact{
    width: unset!important;
}

ul:not(.tickers):not(.navbar-nav):not(.footer-list):not(.footer-social):not(.menu-items):not(.submenu) {
    list-style-type: disc!important;
    margin-block-start: 1em!important;
    margin-block-end: 1em!important;
    margin-inline-start: 0px!important;
    margin-inline-end: 0px!important;
    padding-inline-start: 40px!important;
}

.special-news, .last-news, .doviz-news, .swiper-gold, .seperate-bottom, .swiper-header-slider{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

body.body-fix{
    position: fixed;
    overflow-y: hidden;
}

.doviz-news .card-image {
    background-size: cover;
    background-repeat: no-repeat;
}

.doviz-news .card.doviz-card .card-img {
    max-height: 300px;
    overflow: hidden;
}


.privacy-news .card-img {
    max-height: 240px;
    overflow: hidden;
}

.privacy-news .card-image .card-body,
.container.category .card-image .card-body {
    display: inline-block;
    flex: initial;
    height: auto;
    padding-bottom: 40px !important;
    padding: 0 20px;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    padding-top: 20px;
    margin-bottom: 1px;
}

.container.category .card-image .card-body{
    width: 100%;
}

header #search-top form button{
    padding-right: 0;
}


#logo-section img{
    width: 97px;
}

.footer-top a img{
    width: 86px;
}

.component--right-price{
    --full-h: 300px;
    --tab-head-h: 54px;
    --addition-h: 100px;
    --scroll-gap: 15px;
}

.detail-price-table {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.component--right-price .tab-content{
    height: calc(var(--full-h) + var(--addition-h));
    max-height: calc(var(--full-h) + var(--addition-h));
    cursor: grab;
    overflow-y: auto;
}

.component--right-price::after{
    content: ' ';
    position: absolute;
    background: linear-gradient(180deg, rgba(250, 245, 237, 0.391137) 38.37%, #FAF5ED 100%);
    height: 50px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.component--right-price .tab-content::-webkit-scrollbar {
    display: none;
}

.privacy-news .card-image,
.container.category .card-image
{
    background-size: cover;
    background-repeat: no-repeat;
}

.component--right-price .tab-content table tr td.currency-diff{
    color: #1C70BB;
}

.currency-table-title td{
    font-weight: bold;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.0857143px;
    color: #1B2D49;
    border-bottom: 1px solid transparent;
    padding-bottom: 0;
}

.currency-table-title{
    position: relative;
}

.container.category .card-image .card-body .healine-card {
    position: relative;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
}

.container.category  .card-image .card-body .news-text {
    margin-top: 30px;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
}

/* STICKY */

header.header{
    position: relative;
    height: var(--header-height-desktop);
    transition: all .3s ease;
}

.headline-link:hover{
    color: #1B2D49;
}

.headline-link{
    text-decoration: underline;
    color: #1B2D49;
}


.tickers-swipeable .ticker-marker{
    display: none!important;
}

.detail-content-wrapper table{
    width: 100% !important;
    display: inline-block;
    overflow-x: auto;
    overflow-y: hidden;
    height: auto !important;
}

.page-wrap.open .menu-close {
    display: inline;
    width: 90%;
    text-align: right;
    position: relative;
    top: 15px;
    z-index: 3;
}


.container.category .card-image{
    background-size: cover!important;
}


.page-wrap.open header.header + #navigation .navbar-nav {
    flex-direction: column;
}

.page-wrap.open header.header + #navigation {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -300px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 300px;
    margin: 0 !important;
    padding: 35px 10px 30px 35px !important;
    background: #1b2d49 !important;
    z-index: 2;
    height: 100vh;
}
.page-wrap.open header.header + #navigation{
    justify-content: space-between;
}

.page-wrap.open header.header + #navigation .nav-item:hover::after,
.page-wrap.open header.header + #navigation .nav-item.active::after
{
    width: 90%;
}

.page-wrap.open header.header + #navigation .navbar-collapse{
    flex-grow: 1!important;

    --close-h: 44.8px;
    --close-mb: 20px;
    --nav-pt: 35px;

    --trick: 5vh;

    max-height: calc(100vh - var(--trick) - (var(--close-h) + var(--close-mb) + var(--nav-pt)))!important;
    margin-bottom: auto;
    display: flex!important;
    align-items: flex-start!important;
    position: relative;
    top: calc((var(--close-h) + var(--close-mb)) * -1)!important;
    width: 100%;
}

.page-wrap.open header.header + #navigation .navbar-collapse ul.navbar-nav{
    margin:unset!important;
    width: 100%;
}

.page-wrap.open header.header + #navigation .footer-social {
    position: absolute;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 90vh;
}

.page-wrap.open header.header  + #navigation .footer-social li a{
    margin: 0!important;
}


.page-wrap.open header.header + #navigation{
    display: flex;
}

.page-wrap.open header.header + #navigation #navbarContent a{
    color: #fff!important;
}



.page-wrap:not(.open) header.header + #navigation .only-mobile-logo,
.page-wrap:not(.open) header.header + #navigation .only-mobile-logo.search{
    display:none!important;
}

.page-wrap.open header.header + #navigation .only-mobile-logo{
    padding: 10px 0;
    display: block!important;
}

.page-wrap.open header.header + #navigation .only-mobile-logo.search{
    --h: 60px;
    --pl: 35px;
    display: block!important;

    height: var(--h);
    width: calc(300px - var(--pl) * 2);
}

.page-wrap.open header.header + #navigation .only-mobile-logo.search > form{
    position: absolute;
    width: inherit;
}

.page-wrap.open header.header + #navigation .only-mobile-logo.search > form > button{
    position: absolute;
    background: transparent;
    color:#fff;
    outline:0;
    border:unset;
    padding: 0;
}

.page-wrap.open header.header + #navigation .only-mobile-logo.search > form > input{
    width: 100%;
    background: transparent;
    padding-left: calc(var(--pl) / 2);
    border-color:transparent;
    border-bottom: 2px solid #2C3D55;
    color: #fff;
}

.page-wrap.open header.header + #navigation .nav-item.only-mobile-logo img{
    width: 100px;
    margin: 10px 0;
}

.page-wrap.open header.header + #navigation .menu-close{
    margin-bottom: 20px;
    color: #fff !important;
    font-size: 30px;
    cursor: pointer;
}

.swiper-header-slider{
    /* height: 307px; */
}

.swiper-header-slider .swiper-pagination-bullets{
    text-align: left;
    padding-left: 10px;
    /* position: relative; */
    /* top: -35px; */
    position: absolute;
}

.swiper-header-slider .swiper-pagination-bullet{
    width: auto;
    height: unset;
    text-indent: unset;
    background: transparent;
    border: unset;
    color: #fff;
    text-shadow: 1px 1px 2px black;
}

.swiper-header-slider .swiper-pagination-bullet-active{
    background: transparent;
    opacity: 1;
}

.swiper-header-slider .swiper-navigation{
    /* position: relative; */
    /* top: -62px; */
    /* right: 3px; */
    z-index: 3000;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.swiper-header-slider .swiper-navigation .carousel-control-next,
.swiper-header-slider .swiper-navigation .carousel-control-prev{
    position: static;
}

.swiper-header-slider .swiper-notation{
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 38px;
}

/* .swiper-header-slider .swiper-notation .swiper-button-prev::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.swiper-header-slider .swiper-notation .swiper-button-next::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
} */

.swiper-header-slider .swiper-notation .swiper-button-next::after,
.swiper-header-slider .swiper-notation .swiper-button-prev::after{
    display: inline-block;
    width: 20px;
    height: 20px;
    background: 50%/100% 100% no-repeat;
    font-size: 22px;
    color:#fff;
    font-weight: bolder;
}

.swiper-header-slider .swiper-notation .swiper-button-next,
.swiper-header-slider .swiper-notation .swiper-button-prev{
    width: 38px;
    height: 38px;
    background: #b8b7b6;
}

.swiper-header-slider .swiper-notation .swiper-button-next:hover{
    background: #b8b7b6c2;
}
.swiper-header-slider .swiper-notation .swiper-button-prev:hover{
    background: #b8b7b6c2;
}


#header-slider .slider-links{
    margin-top: 0;
}


.pagination-pm li{
    list-style: none;
}

.pagination-pm li:not(:last-child){
    margin-right: 5px;
}


.pagination-pm li > a{
    padding: 0 7px;
    color: #1c1c1c;
    border-radius: 4px;
}

.pagination-pm li.active > a{
    background: grey;
    color: #fff;
    pointer-events: none;
}

.container.category{
    max-width: unset!important;
    width: 100%!important;
    margin-left: 0!important;
    margin-bottom: 20px!important;
}

.container.category .card-image {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    height: 380px;
}

.crypto-table {
    font-size: 13px;
}

.crypto-table thead td {
    width: initial;
    border-bottom: 1px solid #b1b1b1;
    color: #868686;
    font-weight: 600;
}

.crypto-table td {
    width: initial;
    padding: 10px;
}

.crypto-table .crypto-sembol {
    width: 20px;
    margin-right: 10px;
}

.crypto-table tbody tr:nth-child(even) {
    background: #efe5d5;
}

.crypto-table tbody td {
    border: 0;
}

.social-list {
    display: inline-flex;
    margin-left: 30px;
}

.social-list .share-link {
    margin-top: -4px;
}

.social-list .share-link span {
    margin-right: 20px;
    font-size: 18px;
    color: #1B2D49;
}

.social-list .share-link:hover span {
    color: #666;
}

.advertise-masthead {
    display: block;
    margin: 0 auto 10px auto;
}

.advertise-masthead-mobile {
    display: none;
    margin: 0 auto 10px auto;
}

.advertise-left-tower {
    position: fixed;
    top: 230px;
    margin-left: -180px;
    width: 160px;
    height: 600px;
    z-index: 10;
}

.advertise-right-tower {
    position: fixed;
    top: 230px;
    margin-left: 1160px;
    width: 160px;
    height: 600px;
    z-index: 10;
}

.center-div {
    display: flex;
    justify-content: center;
    margin: 20px auto !important;
}

.home-headline-bottom {
    display: inline-block;
    width: 970px;
    height: 250px;
}

.advertise-leaderboard {
    display: inline-block;
    width: 970px;
    /*height: 90px;*/
}

.advertise-mobile-leaderboard {
    display: inline-block;
    width: 320px;
    /*height: 90px;*/
}
.advertise-footer-top {
    display: inline-block;
    width: 970px;
    height: 90px;
}

.news-detail-bottom {
    display: inline-block;

}

.news-detail-bottom-mobile {
    display: none;

}

.news-detail-top-mobile {
    display: none;
    width: 320px;
    height: 100px;
}

.news-currency-top {
    display: inline-block;
    width: 336px;
    height: 280px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.sticky .advertise-left-tower, .sticky .advertise-right-tower {
    top: 160px;
}

.crypto-section {
    width: 100%;
    margin-bottom: 30px;
    overflow-y: auto;
}

.label-content {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #989898;
}

.label-list {
    margin: 0;
    padding: 0;
    list-style-type: none !important;
}

.label-list li {
    display: inline-block;
    margin-right: 5px;
    text-decoration: none;
}

.label-list li a {
    padding: 5px 14px;
    color: #333;
    background: #efefef;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
}

.label-list li a:hover {
    color: #333;
    background: #dedede;
    text-decoration: underline;
}

.crypto-link {
    color: #333;
    text-decoration: none;
}

.crypto-link:hover {
    color: #333;
    text-decoration: underline;
}

.crypto-detail {
    margin-bottom: 30px;
}

.crypto-table-pagination-list {
    display: flex;
    list-style: none !important;
}

.crypto-table-pagination-list li::marker {
    display: none !important;
    list-style: none !important;
}

.crypto-table-pagination-list li a {
    padding: 0 7px;
    color: #1c1c1c;
    border-radius: 4px;
}

.crypto-table-pagination-list li {
    display: none;
}

.crypto-table-pagination-list li.view {
    display: inline-block;
}

.crypto-table-pagination-list li a.active {
    background: grey;
    color: #fff;
    pointer-events: none;
}

.crypto-table-detail {
    margin-bottom: 25px;
    font-size: 13px;
}

.crypto-table-detail:nth-child(even) {
    background: #efe5d5;
}

.crypto-table-detail td {
    width: initial;
    border-bottom: 1px solid #b1b1b1;
    color: #666;
    font-weight: 500;
}

.crypto-table-detail td .bold {
    color: #222;
    font-weight: 900;
}

.crypto-table-detail td span {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

.crypto-table-detail td span img {
    margin-right: 5px;
}

/* MOBILE */
@media only screen and (max-width: 768px){
    /* gap fix (to bs.row) */
    .footer{
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        /* margin-left: -15px; */
        /* margin-right: -15px; */
    }

    .advertise-leaderboard {
        display: none !important;
    }

    .xl-headline{
        font-size:31px!important;
        line-height: 40px!important;
    }

    .carousel-indicators{
        top: 0;
        bottom: unset;
        width: 100%;
    }

    .news-detail-bottom {
        display: none;
    }

    .news-detail-bottom-mobile, .news-detail-top-mobile {
        display: inline-block;
    }
}




/* MOBILE && TABLET */

@media only screen and (max-width: 992px){

    .advertise-left-tower, .advertise-right-tower {
        display: none;
    }

    .advertise-masthead {
        display: none;
    }

    .advertise-masthead-mobile {
        display: block;
    }

    .detail-price-table {
        position: relative;
    }

    .component--right-price {
        margin-top: 20px;
    }

    #header-slider .slider-links a {
        margin-bottom: 10px;
    }

    #header-slider .xl-headline {
        font-size: 25px !important;
    }

    #header-slider .headline-link {
        margin-bottom: 25px;
    }

    .last-news-home {
        height: auto;
    }

    .last-news-home .swiper-slide {
        height: auto;
    }

    .last-news-home .swiper-pagination {
        display: none;
    }

    .last-news-home .card-img {
        max-height: initial;
        margin-bottom: 10px;
    }

    .last-news-home .card-img img {
        min-height: auto;
    }

    .last-news-home .card-w-img a  {
        margin-top: 0 !important;
    }

    .col-bottom-news:not(:first-child) .card{
        padding: 0;
    }

    .col-bottom-news:first-child .card{
        padding-right: 0;
    }

    header,
    #last-News, #advert, #header-slider,
    nav#navigation + div,
    .footer > .container{
        padding-right: 15px!important;
        padding-left: 15px!important;
    }

    /* tickers fix */

    header .tickers li{
        margin-left: unset;
        margin-right: 5px;
    }

    header .tickers li i {
        font-size: 40px;
    }

    header .tickers li a{
        font-size: .5rem;
    }


    /* header slider fix */


    .slider-links{
        flex-direction: column;
        margin: 30px auto;
    }

    .slider-links [class^="col"]{
        width: 100%!important;
        flex: 0 0 100%!important;
        max-width: 100%!important;
        padding: 0;
    }

    .slider-links [class^="col"] a{
        line-height: 40px;
        position:relative;
    }

    .slider-links [class^="col"]:not(:last-child) > a::after{
        content: ' ';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 0.5px;
        background: #CBCBCB;
    }

    #logo-section{
        padding-top: 20px;
    }

    /* whiye logo */
    .only-mobile-logo{
        padding: 10px 0;
        display:block!important;
    }

    /* mobile menu */

    #navigation{
        justify-content: space-between;
    }

    .navbar-collapse{
        flex-grow: 1!important;

        --close-h: 44.8px;
        --close-mb: 20px;
        --nav-pt: 35px;

        --trick: 5vh;

        max-height: calc(100vh - var(--trick) - (var(--close-h) + var(--close-mb) + var(--nav-pt)))!important;
        margin-bottom: auto;
        display: flex!important;
        align-items: flex-start!important;
        position: relative;
        top: calc((var(--close-h) + var(--close-mb)) * -1)!important;
    }

    .navbar-collapse ul.navbar-nav{
        margin:unset!important;
    }

    #navigation .footer-social {
        position: absolute;
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        top: 90vh;
    }

    #navigation .footer-social li a{
        margin: 0!important;
    }

    /* row fix */

    .menu-close{
        display:inline;
        width: 90%;
        text-align: right;
        position: relative;
        top: 15px;
        z-index: 3;
    }

    /* font-size gap gutter fix */

    #navbarContent a{
        height: 5.5vh;
        padding: 0;
        display: flex;
        align-items: center;
    }

    /* DETAIL */

    .detail-content-wrapper{
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #logo-section{
        margin-bottom: 15px;
    }

    /* mobile menu fix */


    .page-wrap #navigation{
        display:none;
    }

    .page-wrap.open #navigation{
        display: flex;
    }

    /*.page-wrap.open ~ body{
        position: fixed;
        overflow-y: hidden;
    }*/

    /* seperator */

    .swiper-slide-content-for-gap-calculator{
        margin-right: 0!important;
    }

    .swiper-footer .prev-next::before{
        border:unset;
        height: 0.5px;
        background-color: #cbcbcb;
    }

    /* new menu && search */

    nav .nav-item.active::after{
        content: unset;
    }

    nav .nav-item.active > a{
        display:inline-block;
        position: relative;

        --py-gap: .5rem;
    }

    nav .nav-item.active > a::after{
        content: ' ';
        position: absolute;
        width: 3px;
        left: -35px;
        bottom: unset;
        top: 0;
        bottom: 0;
        background: var(--orange);
    }

    /* search */

    .only-mobile-logo.search{
        --h: 60px;
        --pl: 35px;


        height: var(--h);
        width: calc(300px - var(--pl) * 2);
    }


    .only-mobile-logo.search > form{
        position: absolute;
        width: inherit;
    }

    .only-mobile-logo.search > form > button{
        position: absolute;
        background: transparent;
        color:#fff;
        outline:0;
        border:unset;
        padding: 0;
    }

    .only-mobile-logo.search > form > input{
        width: 100%;
        background: transparent;
        padding-left: calc(var(--pl) / 2);
        border-color:transparent;
        border-bottom: 2px solid #2C3D55;
        color: #fff;
    }


    /* revises */

    .privacy-news.seperate-bottom .swiper-slide{
        width: 100%!important;
    }

    .right-vertical-stick.bottom-news::after{
        content: none;
    }

    .carousel-pagination-wrapper .carousel-control-prev,
    .carousel-pagination-wrapper .carousel-control-next{
        left:0!important;
    }


    .carousel-pagination-wrapper .carousel-control-next{
        left:unset!important;
        right: 0!important;
    }


    /* revise new */


    .detail-page .carousel-item img{
        max-height: unset!important;
    }

    .privacy-news .card-image .card-body .healine-card{
        font-family: var(--font-book);
        font-weight: var(--fw900)!important;
        font-size: 24px;
        line-height: 25px;
    }

    .privacy-news .card-image .card-body .news-text{
        font-family: var(--font-book);
        font-weight: var(--fw400)!important;
        font-size: 14px;
        line-height: 15px;
        color: #FFFFFF;
    }

    .doviz-news .card .healine-card{
        width: 100%;
    }

    .advert-item button.close{
        right: 15px;
    }

    /* content images mobile fix */
    .detail-content-wrapper .content-section img{
        height: unset;
    }


    .col-bottom-news{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .privacy-news .card-image{
        max-height: 300px;
        background-repeat: no-repeat;
    }

    .right-vertical-stick.bottom-news::after{
        content: ' ';
        position: absolute;
        left: 0;
        top: 0;
        bottom: unset;
        background:#CBCBCB;
        width: 100%;
        height: 0.5px;
    }

    .right-vertical-stick.bottom-news:first-child:after{
        content: unset;
    }

    header #search-top form button{
        padding: 0 15px;
    }

    #logo-section img, .nav-item.only-mobile-logo img{
        width: 58px;
    }


    /* sticky */
    header.header{
        height: auto;
    }

    .tickers-swipeable{
        max-width: 100%;
        overflow-x: scroll;
        /* justify-content: space-between!important; */
    }

    .tickers-swipeable .ticker-marker{
        display: flex;
    }


    .swiper-header-slider .swiper-notation{
        position: static;
        bottom: unset;

    }

    /* revise */

    #logo-section{
        padding-top: 60px;
        flex-wrap: inherit !important;
        overflow: auto;
    }

    .logo-wrapper{
        position: absolute;
    }

    .icon-menu.menu-btn, .icon-search.search-btn, .logo-wrapper{
        top: 20px!important;
    }


    .tickers li i{
        margin-top: -5px;
    }

    header .tickers li{
        margin-right: 10px;
    }


    .privacy-news .card-image{
        background-size: cover;
    }


    .privacy-news .card-image .card-body{
        width: 100%;
    }

    .card-w-img a{
        margin-top: 15px;
    }
}




/* ONLY TABLET */

@media only screen and (min-width: 767px) and (max-width: 992px){
    .slider-links{
        flex-direction: row;
    }

    .slider-links [class^="col"] a{
        line-height: 26px;
    }


    .slider-links [class^="col"]{
        -ms-flex: 0 0 33.333333%!important;
        flex: 0 0 33.333333%!important;
        max-width: 33.333333%!important;
    }

    .slider-links [class^="col"]:last-child{
        padding-right: 0;
    }

    .slider-links [class^="col"]:first-child{
        padding-left: 0;
    }

    #logo-section{
        padding-top: 0;
    }


    .carousel-indicators{
        width: 100%;
    }
}

/* IPAD PRO - FIX */

@media only screen and (min-width: 1024px) and (max-width: 1366px){
    .slider-links{
        margin-top: 0!important;
    }


}

@media only screen and (min-width: 1024px) and (max-width: 1200px){
    .privacy-news .card-image,
    .container.category .card-image{
        background-size: cover;
    }

    .privacy-news .card-image .card-body,
    .container.category  .card-image .card-body
    {
        width: 100%;
    }
}



#header-slider .carousel-control-next,
#header-slider .carousel-control-prev{
    transition: all .1s linear;
}


@media only screen and (min-width: 1024px){

    .sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2021;
        padding-top: 40px!important;
        background-color: var(--bg);
        /* max-width: unset; */
    }

    .sticky > .mythic-magician{
        position: absolute;
        display: inline-block;
        width: calc(500% + 100vw);
        height: var(--header-height-desktop);
        left: -500%;
        z-index: -5;
        top: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,.2);
		margin-top:40px;
    }
	.sticky > #logo-section,.sticky > .search-wrapper{
		margin-top: 65px;
	}

    .sticky > .mythic-magician::after{
        content: ' ';
        position: absolute;
        background: var(--bg);
        width: 100%;
        height: 100%;
        left: 0;
        z-index: 0;
    }

    .sticky-menu{
        opacity: 0;
        transition: all .3s ease;
        position: absolute;
        bottom: 42%;
        left: -30px;
        cursor: pointer;
    }

    .sticky + nav#navigation {
        /* margin-top: var(--header-height-desktop)!important; */
		margin-top:50px !important;
    }

    .search-wrapper{
        transition: all .3s ease;
    }

    .sticky.for-searching .search-wrapper{
        position: absolute;
        left: -50px;
    }

    .sticky.for-searching .search-wrapper input{
        display: none;
    }

    .sticky .sticky-menu{
        opacity: 1;
    }

}



.doviz-tab{
    overflow-x: auto;
    flex-wrap: nowrap;
    position: relative;
    max-width: 100%;
    overflow-y: hidden;
}

.doviz-tab .nav-link{
    white-space: nowrap;
}

.auto-x{
    overflow-x: auto;
    max-width: 100%;
}
#header-slider .xl-headline{
    font-size: 45px;
}
h1.category-title {
    margin-top: -25px;
    color: #1B2D49;
    font-weight: 600;
}

h2.title {
    margin-top: 30px;
    color: #1B2D49;
    font-size: 25px;
    font-weight: 600;
}


.detail-title {
    line-height: 1.3 !important;
    margin-bottom: 10px;
}

.date-update {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    color: #989898;
    font-weight: 400;
}

.date-update span {
    display: inline-block;
    margin-right: 30px;
    font-size:13px;
}

.date-update span b {
    font-weight: 600;
}

.detail-title {
    font-size: 40px !important;
}
.pagination_hr {
    position: relative;
    padding: .875rem;
    background-color: #faf5ed;
    width: 100%;
}
.pagination_hr:before {
    width: 100%;
    background: none;
    border-bottom: 1px solid #d5d5d5;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 50%;
    top: 50%;
    right: 0;
    pointer-events: none;
}

.pagination_hr .page .current{
    color: #ed1c24;
    font-size: 1.2rem;
    font-weight: 400;
    padding-right: 10px;
    padding-left: 10px;
}
.pagination_hr .page .total{
    padding-right: 10px;
    padding-left: 10px;
}

.pagination_hr .page {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    background-color: #faf5ed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.pagination_hr .pagination_social{
    position: absolute;
    bottom: 0;
    top: 2px;
    right: 0;
    background-color: #faf5ed;
    padding: 0 10px;
}
.pagination_hr .pagination_social .social-list{
    margin-left: 10px !important;
}
.pagination_hr .pagination_social .social-list .icon-linkedin{
    margin-right: 0;
}

#navigation{
	position: sticky;
  top: 0;
  z-index:100;
  background:#faf5ed;
  color: #1b2d49;
}
.Detay a, .content-section a{
    color:#222;
    text-decoration:underline;
}
.Detay a:hover,.content-section a:hover{
    color:#e40421 !important;
}
.category-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #1b2d49 !important;
    color: white;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    z-index: 99999;
}

.mobile-menu  .menu-header {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px 10px 50px;
    position: relative;
}

.mobile-menu  .logo {
    font-size: 24px;
    font-weight: bold;
}

.mobile-menu .close-btn {
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

.mobile-menu .menu-content {
    padding-top:10px;
}
.pr-pl-50{
    padding-left: 50px;
    padding-right: 50px;
}
.mobile-menu .search-box {
    width: 100%;
    padding: 10px;
    margin-bottom: 40px;
    border: none;
}

.mobile-menu .menu-items {
    padding: 0;
    list-style-type: none !important;
    padding-inline-start: 0px !important;
}

.mobile-menu .menu-items li {
    padding: 10px 0;
    cursor: pointer;
}
.mobile-menu .menu-items li a{
    color:#fff;
    line-height: 10px;
    font-size:14px;
    text-decoration: none;
    font-weight: 600 !important;
    position: relative;
    padding: .5rem 1rem;
    padding-right: .5rem;
    padding-left: .5rem;
}
.mobile-menu .menu-items li a::after {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2.5px;
    background: var(--orange);
    transition: var(--hover-trans);
}
.mobile-menu .menu-items li a:hover::after {
    width: 90%;
}
.mobile-menu .menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 900;
}
.mobile-menu .icon-close{
    font-size: 30px;
}
.mobile-menu .search > form{
    margin-bottom: 25px;
}
.mobile-menu .search > form > button {
    position: absolute;
    background: transparent;
    color: #fff;
    outline: 0;
    border: unset;
    padding: 0;
    margin-top: 10px;
    padding-bottom: 5px;
    font-size:16px;
}
.mobile-menu .search > form > input {
    width: 100%;
    background: transparent;
    padding-left: 20px;
    border-color: transparent;
    border-bottom: 2px solid #2C3D55;
    color: #fff;
}
.mobile-menu .menu-footer{
    padding: 20px 50px 0 50px;
}
.mobile-menu .footer-social{
    justify-content: space-evenly;
    align-items: center;
}
.mobile-menu .footer-social a {
    margin-right: 0px;
}
.mobile-menu-items{
    overflow-y: scroll;
    height: 60vh;
    scrollbar-width: thin; /* Modern tarayıcılar için ince scrollbar */
}
.mobile-menu-items::-webkit-scrollbar {
    width: 8px; /* Scrollbar genişliği */
    background-color: transparent; /* Varsayılan scrollbar arkaplanı */
}
.mobile-menu-items::-webkit-scrollbar-thumb {
    background-color: #ccc; /* Scrollbar tutamacı */
    border-radius: 4px; /* Yuvarlatılmış scrollbar */
}
.mobile-menu-items:has(.content-overflowing) {
    overflow-y: auto;
}

.navbar-nav li.dropdown > ul.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 1px solid #ddd;
    border-top-width: 0;
}

.navbar-nav li.dropdown > ul.submenu li {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
}

.navbar-nav li.dropdown > ul.submenu li:last-child {
    border-bottom: none;
}
.navbar-nav li.dropdown:hover > ul.submenu {
    display: block;
}
.mobile-menu-items li.dropdown > ul.submenu {
    display: none;
    z-index: 1000;
    padding-left: 15px;
    border-bottom:1px solid #fff;
    border-top:1px solid #fff;
    background:#fff;
    box-shadow: -50px 0 0 #fff, 49px 0 0 #fff;
}
.mobile-menu-items li.dropdown.active > ul.submenu{
    display: block;
}
.mobile-menu-items li.dropdown.active ul.submenu li {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
}
.mobile-menu-items li.dropdown.active ul.submenu li a{
    color:#1b2d49 !important;
}
.mobile-menu-items li.dropdown.active ul.submenu li a::after {
    bottom: -10px;
}
.mobile-menu-items li.dropdown.active > a {
    padding-bottom: 16px !important;
}
.detail-content-wrapper .content-section video{
    max-width: 100%!important;
}
