/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root{
    --color_Primary: #CD021A;
    --color_Secondary: #0a0a0a;
}

.disease-page{ padding: 50px 0; }
.disease-page .container{ 
    max-width: 1140px;
    padding: 0 10px;
    margin: 0 auto; 

    display: flex;
    flex-direction: column;
}

.disease-page .disease-sidebar{
    width: 100%;
}
.disease-page .disease-nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.disease-page .disease-nav ul li{
    margin-bottom: 15px;
}
.disease-page .disease-nav ul a{
    display: block;

    font-family: "Archivo", Sans-serif;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.7em;
    letter-spacing: 0.5px;
    fill: var(--color_Secondary);
    color: var(--color_Secondary);
    background: rgb(219,219,219);
    background: linear-gradient(180deg, rgba(219,219,219,0.14751838235294112) 0%, rgba(255,255,255,1) 100%);
    border-radius: 5px;
    padding: 10px 10px 10px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: all 0.3s ease-in-out;

    position: relative;
}
.disease-page .disease-nav ul li a::before{
    content: "";
    width: 5px;
    height: 100%;
    display: block;

    background: var(--color_Primary);

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    transition: all 0.15s ease-in-out;
}
.disease-page .disease-nav ul li:hover a,
.disease-page .disease-nav ul li.active a{
    background: var(--color_Primary);
    color: #fff;
    box-shadow: none;
}
.disease-page .disease-nav ul li:hover a::before,
.disease-page .disease-nav ul li.active a::before{
    background: var(--color_Secondary);
    width: 10px;
}
.disease-page .disease-info-name::after{
    content: "";
    width: 5%;
    height: 3px;
    display: block;

    background: var(--color_Secondary);
    margin: 10px 0;
}
.disease-page .disease-tab-title{
    color: var(--color_Secondary);
}
.disease-page .disease-tabs-list{
    display: flex;
    flex-wrap: wrap;

    list-style: none;
    margin: 0;
    padding: 0;

    border-bottom: 3px solid var(--color_Primary);
}
.disease-page .disease-tabs-list .ui-tabs-tab + .ui-tabs-tab{ margin-left: 1px; }
.disease-page .disease-tabs-list .ui-tabs-anchor{
    display: block;
    background: #e25061;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.7;

    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid #fff;
    padding: 13px 20px 10px;
}
.disease-page .disease-tabs-list .ui-tabs-active .ui-tabs-anchor{ 
    background: var(--color_Primary); 
    border-bottom-color: var(--color_Primary);
}
.disease-page .disease-tab-content{ padding-top: 30px; }

@media screen and (min-width: 768px){
    .disease-page .container{
        flex-direction: row;
        justify-content: space-between;
    }
    .disease-page .disease-sidebar{ 
        width: 30%;
        will-change: min-height; 

        order: 1;
    }
    .disease-page .disease-nav{
        transform: translate(0, 0); /* For browsers don't support translate3d. */
        transform: translate3d(0, 0, 0);
        will-change: position, transform;
    }
    .disease-page .disease-info{
        border-left: 1px solid #ededed;
        
        width: 67.5%;
        padding-left: 1.75%;

        order: 2;
    }
    .disease-page .disease-tabs-list .ui-tabs-anchor{
        font-size: 18px;
        line-height: 1;
    }
}

@media screen and (max-width: 767px){
    .disease-page .disease-sidebar{ margin-top: 25px; }
}