html {
    font-size: 14px;
}

@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;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.productInfo {
    color: green;
}

.productTabs {
    height: 100%;
    width: 100%;
    text-align: left;
    background-color: #e8e8e8;
    margin-top: 15px;
    border-radius: 10px;
}

.tabNavigation {
    width: 100%;
    overflow-x: auto;
    position: relative !important;
    z-index: 999 !important;
    top: 3px;
}

.productTabs ul {
    display: flex;
    overflow-y: hidden;
    margin: 0px;
    padding-inline-start: 5px;
    width: 100%;
    table-layout: fixed;
    list-style-type: none;
}

    .productTabs ul li {
        /* display: table-cell; */
        border-radius: 10px;
        margin-right: 2%;
        padding-top: 10px;
        padding-bottom: 10px;
        flex: auto;
    }

@media (max-width: 800px) {
    .productTabs ul {
        flex-wrap: wrap;
    }

        .productTabs ul li {
            flex-basis: 50%;
        }
}

        .productTabs ul li.active {
            border-radius: 10px;
        }

        .productTabs ul li a {
            text-decoration: none;
            color: black;
            text-transform: uppercase;
            padding: 10px;
            line-height: 25px;
            position: relative;
            font-weight: bold;
        }

        .productTabs ul li.active a {
            color: green;
        }

.tabContent {
    position: relative !important;
    z-index: 1 !important;
    padding: 20px;
    min-height: 40px;
}

    .tabContent h2 {
        font-size: 16px;
    }

.stepTitle {
    color: green;
    font-weight: bold;
}

.videoDisplay {
/*    margin: auto;
    width: 50%;
    margin-bottom: 20px;*/
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.iframeResponsive {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 675px;
}

.questionArea {
    margin: auto;
    width: 50%;
    text-align: center;
}

.questionButton {
    background-color: green;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    border: none;
    width: 40%;
    padding: 10px;
}

.productRedirectHeader {
    color: green;
    text-align: center;
}

.productRedirectDetail {
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: #e8e8e8;
    margin-top: 15px;
    border-radius: 20px;
    min-height: 125px;
    padding: 10px;
}

.productErrorHeader {
    color: red;
    text-align: center;
}

.productErrorContainer {
    background-color: black;
}

.productErrorDetail {
    height: 100%;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    color: white;
    border-radius: 20px;
    min-height: 125px;
    padding: 10px;
}