﻿/**
 * Fonts
 */

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

    /**
 * Reset
 */
.required:after {
    content: "  (*)";
    color: red;
    font-family: ui-serif;
}
/**
 * Article Container
 */
.article-container {
    padding: 2rem;
}

/**
 * Article Block
 */
.article-block {
    text-align: center;
}

    .article-block .entry-content > p {
        color: #666;
    }

/**
 * Tabs Container
 */


/**
 * Tabs Block
 */
.tabs-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

/**
 * Tabs
 */
.tabs {
    display: flex;
}

    .tabs > ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 15%;
    }

        .tabs > ul li {
            display: block;
        }

            .tabs > ul li:not(:last-child) {
                border-bottom: 1px solid #262626;
            }

            .tabs > ul li a,
            .tabs > ul li a:visited {
                display: flex;
                border-bottom: none;
                text-decoration: none;
                background-color: #000;
                color: #fff;
                padding: 1rem 1.5rem;
                transition: all 0.2s ease-in-out;
                word-wrap: break-word;
                position: relative !important;
                min-height: 100px !important;
            }
                .tabs > ul li a span.mainicon {
                    position: absolute;
                    top: 50%;
                    left: 0;
                    font-size:40px
                }
                .tabs > ul li a span.icon {
                    opacity:80%;
                    position: absolute;
                    top: 75%;

                }

                .tabs > ul li a:hover,
                .tabs > ul li a:focus,
                .tabs > ul li a:active {
                    border-bottom: none;
                    outline: 0;
                }

                .tabs > ul li a.active {
                    background-color: #fff;
                    color: #0067b8;
                }

                .tabs > ul li a:hover:not(.active) {
                    color: #0067b8;
                }

                .tabs > ul li a > span {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                }

                    .tabs > ul li a > span.tab-label {
                        display: none;
                    }

    .tabs section {
        width: 85%;
        background-color: #fff;
        padding: 1rem;
        display: none;
        word-wrap: break-word;
        border-bottom: 6px solid #0067b8;
    }

        .tabs section > * {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.2s, transform 0.2s;
        }

            .tabs section > *:nth-child(1) {
                transition-delay: 0.2s;
            }

            .tabs section > *:nth-child(2) {
                transition-delay: 0.3s;
            }

            .tabs section > *:nth-child(3) {
                transition-delay: 0.4s;
            }

            .tabs section > *:nth-child(4) {
                transition-delay: 0.5s;
            }

            .tabs section > *:nth-child(5) {
                transition-delay: 0.6s;
            }

            .tabs section > *:nth-child(6) {
                transition-delay: 0.7s;
            }

            .tabs section > *:nth-child(7) {
                transition-delay: 0.8s;
            }

            .tabs section > *:nth-child(8) {
                transition-delay: 0.9s;
            }

            .tabs section > *:nth-child(9) {
                transition-delay: 1s;
            }

            .tabs section > *:nth-child(10) {
                transition-delay: 1.1s;
            }

            .tabs section > *:nth-child(11) {
                transition-delay: 1.2s;
            }

            .tabs section > *:nth-child(12) {
                transition-delay: 1.3s;
            }

            .tabs section > *:nth-child(13) {
                transition-delay: 1.4s;
            }

            .tabs section > *:nth-child(14) {
                transition-delay: 1.5s;
            }

            .tabs section > *:nth-child(15) {
                transition-delay: 1.6s;
            }

            .tabs section > *:nth-child(16) {
                transition-delay: 1.7s;
            }

            .tabs section > *:nth-child(17) {
                transition-delay: 1.8s;
            }

            .tabs section > *:nth-child(18) {
                transition-delay: 1.9s;
            }

            .tabs section > *:nth-child(19) {
                transition-delay: 2s;
            }

            .tabs section > *:nth-child(20) {
                transition-delay: 2.1s;
            }

        .tabs section.active {
            display: block;
        }

        .tabs section.active-content > * {
            opacity: 1;
            transform: translateY(0);
        }

@media (min-width: 576px) {

    .tabs > ul {
        width: 150px;
    }

        .tabs > ul li a {
            flex-wrap: wrap;

        }

            .tabs > ul li a > span {
                width: 100%;
            }

                .tabs > ul li a > span.tab-label {
                    width: 100%;
                    display: block;
                    font-size:13px
                }

    .tabs section {
        width: calc(100% - 150px);
        padding: 2rem 2rem;
    }
}

@media (min-width: 768px) {

    body {
        font-size: 1.5rem;
    }


}
.control-label {
    color: rebeccapurple 
}
@media (min-width: 992px) {
    .tabs {
        width: 100%;
    }
}


.checkbox input,
.checkbox-inline input,
.radio input,
.radio-inline input {
    opacity: 0;
    position: absolute;
}

.checkbox label,
.radio label {
    margin-top: 5px;
    margin-bottom: 5px;
}

.checkbox .indicator,
.checkbox-inline .indicator,
.radio .indicator,
.radio-inline .indicator {
    position: relative;
    margin-left: 10px;
}

    .checkbox .indicator:before,
    .checkbox-inline .indicator:before,
    .radio .indicator:before,
    .radio-inline .indicator:before {
        content: '';
        border: 2px solid #888;
        display: inline-block;
        vertical-align: middle;
        width: 23px;
        height: 23px;
        padding: 2px;
        margin-top: -5px;
        margin-right: 10px;
        text-align: center;
    }

.checkbox input:checked + .indicator:before,
.checkbox-inline input:checked + .indicator:before {
    border-color: #00f;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="-7 -7 30 30"><path fill="#00f" d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg>') no-repeat;
}

.checkbox input:disabled + .indicator:before,
.checkbox-inline input:disabled + .indicator:before {
    border-color: #ccc;
    box-shadow: inset 0px 0px 0px 4px #fff;
}

.checkbox input:checked:disabled + .indicator:before,
.checkbox-inline input:checked:disabled + .indicator:before {
    border-color: #ccc;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="-7 -7 30 30"><path fill="#ccc" d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg>') no-repeat;
}

.radio input + .indicator:before,
.radio-inline input + .indicator:before {
    border-radius: 50%;
}

.radio input:checked + .indicator:before,
.radio-inline input:checked + .indicator:before {
    border-color: #00f;
    background: #00f;
    box-shadow: inset 0px 0px 0px 5px #fff;
}

.radio input:disabled + .indicator:before,
.radio-inline input:disabled + .indicator:before {
    border-color: #ccc;
    box-shadow: inset 0px 0px 0px 5px #fff;
}

.radio input:checked:disabled + .indicator:before,
.radio-inline input:checked:disabled + .indicator:before {
    border-color: #ccc;
    background: #ccc;
    box-shadow: inset 0px 0px 0px 5px #fff;
}

.checkbox input:focus + .indicator,
.checkbox-inline input:focus + .indicator,
.radio input:focus + .indicator,
.radio-inline input:focus + .indicator {
    outline: 0px solid #ddd;
    /* focus style */
}

.radio label::before{
    border:0
}