body {
    background: #FFFFFF;
}

.expert-intro {
    margin-top: 10px;
}

.instructions {
    position: relative;
}

.instructions__banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10rem;
}

.instructions__banner__title {
    font-size: 4rem;
    margin: 0;
    max-width: 500px;
}

.instructions__image {
    position: relative;
    width: 388px;
    height: auto;
}

.instructions__bg-wrapper {
    background-color: #FFFFFF;
    margin-bottom: 80px;
}

.instructions__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 0 10px;
}

.instructions__tab {
    display: flex;
    flex-direction: column;
    gap: 18px 0;
    max-width: 380px;
    width: 100%;
        position: sticky;
    top: 100px;
    left: 0;
    height: fit-content;
}

.instructions__tab__link {
    border: none;
    padding: 12px 24px;
    font-family: "Montserrat", "Arial", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
    color: #000000;
    text-align: left;
    width: fit-content;
}

.instructions__tab__link:hover {
    background-color: #F3F4F5;
    border-radius: 32px;
    font-weight: 700;
    width: fit-content;
}

.instructions__accordion {
    overflow: auto;
    scrollbar-width: none;
}

.instructions__accord-btn {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-family: "Montserrat", "Arial", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.5rem;
    color: #202020;
    margin-bottom: 1rem;
    padding: 24px 0;
    border: none;
    width: 100%;
    border-bottom: 1px solid #b0acac;
    text-align: left;
    hyphens: auto;
}

.instructions__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.instructions__accord-btn__active {
    background-color: #b0acac;
}

.instructions__accord-btn span {
    flex-grow: 2;
}

.instructions__accord-btn__subcaption {
    color: #b0acac;
}

.instructions__accord-btn__img {
    margin-left: 15px;
}

.instructions__title--h2 {
    font-family: "Montserrat", "Arial", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.6rem;
    color: #202020;
    margin-bottom: 1rem;
}

.instructions__description, .instructions__list__item {
    color: #202020;
    font-size: 1.125rem;
    line-height: 1.353rem;
    margin-bottom: 2rem;
}

.instructions__subdesc {
    color: #202020;
    font-size: 1.125rem;
    line-height: 1.3rem;
    font-weight: 700;
}

.instructions__description--capsules {
    display: block;
}

.instructions__list {
}

.instructions__list__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: .525em;
    width: .2rem;
    height: .2rem;
    border-radius: 50%;
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    background-color: #202020;
}

.instructions__table {
    display: flex;
    flex-direction: column;
}

.instructions__table__row  {
   display: flex;
   justify-content: flex-end;
}

.instructions__table__row-title {
    color: #202020;
    font-size: 1.125rem;
    line-height: 1.3rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
}

.instructions__table__cell {
    color: hsl(0, 0%, 13%);
    font-size: 1.125rem;
    line-height: 1.353rem;
    border: none;
    display: flex;
    justify-content: flex-start;
    padding: 12px 53px 12px 0;
    border-bottom: 1px solid #b0acac;
}


.instructions__table__row span:first-child {
    width:40%;
}

.instructions__table__row span:nth-child(2), .instructions__table__row span:last-child {
    width:30%;
}

.instructions__table__cell-unbordered {
    border-bottom: none;
}

.instructions__table__cell span {
    width: 25%;
}

#scrollToTopBtn {
    display: none; 
    position: fixed; 
    bottom: 100px; 
    z-index: 99; 
    border: none;
}

@media screen and (max-width: 1200px) { 
    .instructions__wrapper {
        flex-direction: column;
    }

     .instructions__banner__title {
        font-size: 3rem;
        margin: 0;
    }

    .page__title {
        font-size: 3rem;
    }

    .instructions__tab {
        flex-direction: row;
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-width: 100%;
        width: 100%;
        position: static;
    }

    .instructions__table {
        overflow-x: scroll;
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }

    .instructions__tab::-webkit-scrollbar, .instructions__table::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    #scrollToTopBtn,  #scrollToTopBtn img {
        display: none; 
    }

}

@media screen and (max-width: 768px) { 
    .instructions__banner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10rem 20px 0;
    }

    .instructions__banner__title {
        font-size: 2rem;
        margin: 0;
    }

    .page__title {
        font-size: 2rem;
    }

    .instructions__image {
        position: relative;
        width: 338px;
        height: auto;
    }

    .instructions__wrapper {
        flex-direction: column;
        margin: 0 20px;
    }

}

@media (min-width: 1201px) {
    .l-content, .l-wrapper {
        overflow: initial;
    }
}

