@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url('../img/pharmanexus-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

h1 {
    color: white;
    opacity: 0.9;
}

p {
    color: white;
    opacity: 0.9;
}

label {
    color: white;
    opacity: 0.9;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

#yearly-show {
    display: none;
}

.pricing-content {
    min-height: 50vh;
}

.discount-label {
    border-radius: 3rem;
    color: #569ddc;
    border: 1px solid #569ddc;
    padding: .5rem 1rem;
    margin-left: .75rem;
}

.toggle-container {
    font-weight: 600;
    align-items: center;
    display: flex;
    gap: 2rem;
    color: white;
    justify-content: center;
    margin-bottom: 2rem;
}

@media screen and (min-width: 992px) {
    .toggle-container {
        margin-left: 7rem;
    }
}

.custom-toggle {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    display: none;
}

#yearly-toggle {
    opacity: 60%;
}

.toggle-label {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #d4d4d4;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-label .toggle-button {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: #3656b9;
    border-radius: 50%;
    transition: left 0.3s ease;
}

.toggle-input:checked + .toggle-label .toggle-button {
    left: 33px;
}

header {
    display: flex;
    justify-content: center;
    margin-bottom: 3.875rem;
    margin-top: 2.5rem;
}

.header-text {
    margin-bottom: 3rem;
}

.header-text h1 {
    font-size: 3.2rem;
    font-weight: 600;
}

.logo {
    max-width: 300px;
    height: auto;
}

input {
    opacity: 0.85;
}

select {
    opacity: 0.85;
}

.single-pricing {
    letter-spacing: 1px !important;
    display: flex;
    flex-direction: column;
    background: #0d152b;
    color: white;
    padding-left: 3rem;
    padding-right: 3rem;
    overflow: hidden;
    padding-top: 4rem;
    border-radius: 2rem;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    box-shadow: 0px 1px 10px #569ddc;
}

@media only screen and (max-width: 992px) {
    .single-pricing {
        margin-bottom: 2rem;
    }
}

.single-pricing:hover {
    box-shadow: 0px 2px 10px #569ddc;
    z-index: 100;
    transform: translate(0, -10px);
}

.price-label {
    color: #fff;
    background: #2b4592;
    font-size: 16px;
    text-align: center;
    display: block;
    margin-left: -20px;
    position: absolute;
    overflow: hidden;
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: 600;
    top: 0;
    left: 0;
    right: 0;
}

.hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    opacity: 50%;
    border: 1px dashed #569ddc;
}

.price-container {
    gap: 8px;
    align-items: center;
    display: inline-flex;
    font-size: 2rem !important;
}

.price-container h4 {
    font-size: 2rem;
}

.price-container span {
    font-size: .7rem !important;
    margin-top: 4px;
}

.price-head h5 {
    font-weight: 600 !important;
    text-transform: none !important;
    font-size: 1rem !important;
}

.price-head h4 {
    font-weight: 700 !important;
    text-transform: none !important;
    font-size: 2.3rem !important;
}

.price-head span {
    display: inline-block;
    background: #ffaa17;
    width: 6px;
    height: 6px;
    border-radius: 30px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.confirm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin: 0;
    text-align: center; 
}

.single-pricing {
    position: relative;
}

.single-pricing h5 {
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
    
.single-pricing h6 {
    font-size: 14px;
    margin-bottom: 0px;
}

.single-pricing ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.single-pricing ul li {
    display: flex;
    font-size: 14px;
    line-height: 1.2rem;
}

.list-item-icon {
    width: 20px;
    height: 20px;
    margin-right: .5rem;
    flex-shrink: 0;
}

.order-button {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5000px;
    color: white;
    display: inline-block;
    overflow: hidden;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 3rem;
    background-color: #2b448f; 
}

.order-button:hover, .order-button:focus {
    opacity: 70%;
}

a:hover {
    color: white;
}

.most-chosen {
    background-color: #eec131 !important;
    color: #0c0c0c !important;
}

.option-title {

}

.option-title h5 {
    font-weight: 600 !important;
    text-transform: none !important;
    font-size: 1rem !important;
}

.option-paragraph {
    font-size: 14px;
    color: white;
}

.accordion {
    margin-top: 1rem;
    background-color: #30438a;
    border-radius: 1rem;
}

.accordion-itemHeader {
    border-radius: 1rem;
}

.accordion-itemContainer {
    font-size: 14px;
    padding: 1rem;
    color: white;
    font-weight: 500;
    background-color: #30438a;
    border-radius: 1rem;
}

.accordion-itemContainer:hover {
    cursor: pointer;
    color: #d4d4d4;
}

.accordion-itemContainer:hover svg {
    opacity: 0.7;
}

.accordion .panel {
    display: none;
    padding: 1rem;
    color: white;
    transform: 0.2s ease-out;
}


.option-arrow{
    transform: rotate(0deg);
    transition: 0.2s ease-in;
}

.option-price {
    font-size: 14px;
    font-weight: 500;
}