﻿.mainOptions {
    position: relative;
}

#currentPharmacyOption, #newPharmacyOption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    transition-property: margin-top, opacity;
    margin-top: 0px;
    display: none;
    opacity: 1;
}

    #currentPharmacyOption.animateDown, #newPharmacyOption.animateDown {
        margin-top: 50px;
        opacity: 0;
    }

.currentPharmacyContainer > .currentPharmacyName > .nameText {
    transition: background-color 0.3s ease;
    background-color: white;
    color: #2e2e2e;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bolder;
    margin-bottom: 5px;
    width: 100%;
    display: block;
}

    .currentPharmacyContainer > .currentPharmacyName > .nameText.active {
        background-color: var(--pmm-primary-color);
        color: white;
    }

.sectionPharmacyOption h4 {
    text-align: center;
    font-size: 14px;
    font-weight: bolder;
    color: var(--pmm-primary-color);
    margin-bottom: 20px;
}

.pharmacyOptionsContainer {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
}

    .pharmacyOptionsContainer > .pharOption {
        transition: all 0.3s ease;
        width: 33%;
        padding: 15px 15px;
        color: #2e2e2e;
        background-color: white;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 150px;
        max-width: 200px;
        font-weight: bold;
    }

        .pharmacyOptionsContainer > .pharOption.active {
            background-color: var(--pmm-primary-color);
            color: white;
        }

.headingText {
    font-size: 14px;
    font-weight: bold;
}

.currentPharmacyContainer > .currentPharmacy {
    background-color: white;
    width: 100%;
    color: #2e2e2e;
    padding: 15px 20px;
    font-weight: bold;
}

.provinceList {
    padding: 0px;
}

    .provinceList .provinceButton > div {
        transition: background-color 0.3s ease;
        background-color: white;
        color: #2e2e2e;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: bolder;
        margin-bottom: 5px;
    }

        .provinceList .provinceButton > div.day__select {
            background-color: var(--pmm-primary-color);
            color: white;
        }
