@import url('fonts.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    background: #FEFEFE;
}

/* Clinical Test Packages */
.clinical-test-text {
    font-family: 'cera pro reg';
    font-weight: bold;
}

.switch-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding-left: 5px; 
    padding-right: 5px;
    background: #ECECEC;
}

.switch {
    position: absolute;
    top: 50%;
    left: 5px; 
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-family: 'cera pro mid';
    cursor: pointer;
    color: #000;
}

.switch.active {
    left: auto;
    right: 5px; 
    transform: translateY(-50%);
}

.inactive-switch-text {
    font-family: 'cera pro mid';
    color: #6E6E6E;
    text-align: center;
}

/* Content */
.title-header-bg {
    background: #FFF6F8;
}

.text-style {
    font-family: 'ubuntu bold';
    color: #000;
}

.text-color {
    color: #ED1C24;
}

.text-bg {
    background: #F5F5F5;
}

.text-style-list {
    font-family: 'ubuntu mid';
    color: #000;
}

.text-style-inactive {
    font-family: 'ubuntu mid';
    color: #A4A4A4;
}

/* Mobile Packages */

.package-bg-top {
    background: #FFF6F8;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.package-bg-bot {
    background: #FFF6F8;
}