#cgrf-limits-table{
    border: 1px solid #000;
    border-collapse: collapse;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;

    td, th{
        border: 1px solid #000;
        padding: 5px;
    }
}

.faq-item{
    border-radius: 10px;
    padding: 30px;
    margin: 10px;
    box-shadow: 2px 2px 5px 0px #878787;
}

.faq-header{
    font-family: 'Rubik';
    font-size: 2rem;
    color: #0c455f;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
}



.faq-header:hover{
    cursor: pointer;
    color:#22b9ff;
}

hr{
    color:gray;
}

.faq-content{
    font-family: 'Rubik';
    font-size: 1.5rem;
    color: #0c455f;
    font-weight: 400;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    margin-top:0;
}

.faq-content.open {
    opacity: 1;
}

.container{
    box-shadow: none !important;
}

.plusminus {
	position: relative;
	width: 15px;
	height: 15px;
	cursor: pointer;
	
	&.active {
		&:before {
			transform: translatey(-50%) rotate(-90deg);
			opacity: 0;
		}
		&:after {
			transform: translatey(-50%) rotate(0);
		}
	}
	
	&:before , &:after {
		content: "";
		display: block;
		background-color: #333;
		position: absolute;		
		top: 50%; left: 0;
		transition: .35s;
		width: 100%;
		height: 3px;
	}
	
	&:before {		
		transform: translatey(-50%);
	}
	
	&:after {
		transform: translatey(-50%) rotate(90deg);
	}
	
}