
/*===================================
=            latest news            =
===================================*/
.cust-card{
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid var(--red);
	margin-top: 15px;
	width: 100%;
}

.cust-card .title{
	background: var(--red);
	padding: 5px 0;
	color: #fff;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	text-align: center;
	font-size: 18px;
	text-transform: uppercase;
}

.cust-card .desc{
	background: #ffff;
	padding: 15px;
}

.ui-datepicker .ui-datepicker-header, .ui-widget.ui-widget-content {
    border-radius: 5px;
}

.ui-datepicker-calendar span{
	font-family: "Montserrat", sans-serif;
}

.form-group label{
	font-weight: bold;
	margin-left: 5px;
}
.cust-card .desc {
    position: relative;
}

.cust-card .counter {
    font-weight: bold;
    border-radius: 45px;
    background: var(--red);
    position: absolute;
    right: 50%;
    top: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.news {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.date, .trading-code {
    color: var(--green);
    font-weight: bold;
}

.news .mobile-head {
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.news-text {
    text-align: justify;
}

.news-container.navbar-light .navbar-toggler-icon {
    background-image: url('../images/filter-list.svg');
    fill: var(--red);
}

.news-container.navbar-light .navbar-toggler {
    border-color: var(--red);
}

.custom-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}


    .custom-indicators .wrapper {
        background: var(--green);
        width: 20px;
        height: 20px;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        margin: 0 5px;
        cursor: pointer;
        border: 1px solid var(--green);
        transition: 0.3s all;
        font-size: 14px;
    }

        .custom-indicators .wrapper:hover {
            background: transparent;
            transform: scale(1.3);
            color: var(--green);
        }

        .custom-indicators .wrapper.active {
            background: transparent;
            transform: scale(1.3);
            color: var(--green);
        }

.no-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .no-news svg {
        color: var(--red);
    }

    .no-news h2 {
        color: var(--green);
    }
/*=====  End of latest news  ======*/
