/* @import url('./style.css'); */

.content {
    padding: 0px 60px;
}

.navigation-header {
    color: #8B96A5;

    span {
        font: 400 14px/20px OpenSans-Regular;
        align-items: center;
        display: flex;
        gap: 10px;
    }
}

.description {
    font: 400 14px/20px OpenSans-Regular;
    ;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.51px;
    text-align: left;
}

.options {
    gap: 15px;
}

.buttons {
    width: 100%;
    gap: 2%;

    img {
        margin-right: 5px;
    }

    .btn {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.20000000298023224px;
        align-items: center;
        display: flex;
        justify-content: center;
        width: 48%;
    }
}

.toggle {
    width: 100%;

    span {
        padding: 5px;
        width: 50%;
        cursor: pointer;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.20000000298023224px;
        color: #928F8F;
    }

    /* .active {
        color: #000000;
        font-weight: 400;
        width: 50%;
        border-bottom: 3px solid #000000;
    } */
}

.data {
    border: 1px solid #DEE2E7;
    padding: 0px 20px;
    min-height: 80px;

    span {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: -0.20000000298023224px;
        text-align: left;
    }
}

.colored {
    background-color: #FAFAFA;
}

.product-description {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    flex-direction: row-reverse;
    box-shadow: 0px 4px 18px 0px #0000001A;

}

.image-container {
    flex: 1;
    padding-right: 20px;
}

.image-container img {
    max-width: 100%;
    border-radius: 10px;
}

.text-container {
    flex: 2;
}

.text-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-container ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.text-container ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-size: 24px;
    line-height: 1;
}

.product-description:nth-child(even) {
    flex-direction: row;
}

@media (max-width: 992px) {

    .pd-container {
        flex-direction: column;
        gap: 5px;
    }

    .crousels {
        width: 100%;
    }

    .details {
        width: 100%;
        margin: 0 !important;
    }

    .description {
        font-size: 16px;
    }

    .info {
        flex-direction: column;
    }

    .first-div {
        width: 100%;
    }

    .second-div {
        width: 100%;
    }

    .third-div {
        width: 100%;
    }

    .product-description {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

.nav-link {
    width: 100%;
    background-color: white;
    color: #928F8F;
    border-radius: 0px;
}

.nav-link active {
    background-color: white;
}

.nav-link:hover{
    color: #000000;
} 

.nav-pills .nav-link.active {
    background-color: white;
    color: #000000;
    font-weight: 400;
    width: 100%;
    border-bottom: 3px solid #000000;
}

.nav-pills .nav-link{
    border-radius: 0px;
}

@media (max-width: 421px) {
    .description {
        font-size: 12px;
        line-height: 18px;
    }

    .buttons{
        flex-direction: column !important;
        row-gap: 10px;
    }

    .btn{
        width: 100% !important;
    }
}