.nutrition-sec {
    max-width: 1000px;
    margin: 0 auto;
    font-family: "Gilroy";
}

.nutrition-list {
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.nutrition-item .title {
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.03em;
    margin: 0 0 19px 0;
	 color: #1C4E9D;
}

.nutrition-tabs .tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 30px;
    align-items: flex-end;
    position: relative;
}

.nutrition-tabs .tabs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #DBDBDB;
    height: 1px;
    z-index: 1;
}


.nutrition-tabs .tab {
    padding: 10px 9px;
    border: 1px solid #DBDBDB;
    background: #F2F2F2;
	border-radius:0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;
    color: #1C4E9D;
    font-family: "Gilroy";
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease-in-out;
	text-transform: none;
	font-weight:400;
	
}
.nutrition-tabs .tab:hover{
	    color: #1C4E9D;
	font-weight:600;
	 background: #fff;
}
.nutrition-tabs .tab.active {
    background: #fff;
	    color: #1C4E9D;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.02em;
    z-index: 2;
    border-bottom: 1px solid #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Table */
.nutrition-table-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nutrition-table-wrapper::-webkit-scrollbar {
    display: none;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    color: #1e40af;
    table-layout: fixed;
	margin:0;
	color: #1C4E9D;
}

.nutrition-table th,
.nutrition-table td {
    padding: 10px 8px;
	border:none;
    border-bottom: 1px solid #DBDBDB;
    text-align: left;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    width: 117px;
	background:transparent !important;
}
.nutrition-table a{
	color:inherit;
}
.nutrition-table th {
    font-weight: 700;
    border-width: 2px;
    padding: 4px 8px;
	border:none !important;
	border-bottom:2px solid #DBDBDB !important;
}

.nutrition-table th small {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    display: block;
	line-height:16px;
}

.nutrition-table th:nth-child(1),
.nutrition-table td:nth-child(1) {
    width: 298px;
}

.nutrition-table tbody tr:last-child td {
    border-bottom: none;
}

.nutrition-table .nutrition-name-mb {
    display: none;
}

@media (max-width:767px) {
	.nutrition-tabs .tabs{
		margin-bottom:24px;
	}
	.nutrition-list{
		gap:24px;
	}
	.nutrition-item .title{
		font-size:18px;
		line-height:21px;
		margin-bottom:16px;
	}
    .nutrition-table th,
    .nutrition-table td {
        width: 80px;
    }

    .nutrition-table th:nth-child(1),
    .nutrition-table td:nth-child(1) {
        width: 150px;
    }

    .nutrition-table th:first-of-type {
        display: none;
    }

    .nutrition-table th span {
        transform: rotate(-90deg);
        display: block;
        width: 1.25rem;
        line-height: 0;
        margin-bottom: 15px;
    }

    .nutrition-table th {
        height: 125px;
        vertical-align: bottom;
    }

    .nutrition-table th small {
        transform: translateY(15px);
        margin-bottom: 0;
        white-space: nowrap;
		line-height:0;
    }

    .nutrition-table td:first-of-type {
        display: none;
    }

   
    .nutrition-table .nutrition-name-mb {
        display: block;
    }

    .nutrition-table .nutrition-name-mb td {
        display: block;
        border: none;
        font-weight: 700;
        padding: 8px 6px 4px;
		width:400px;
    }

    .nutrition-table th,
    .nutrition-table td {
        font-size: 15px;
        line-height: 20px;
        padding: 8px 6px;
    }

}