/*CSS color Variables*/

:root {

    --teal: #00C3CE;

    --lightteal: #8FD6DB;

    --black: #191919;

    --gray: #3E3E3E;

    --lightgray: #F0F0F0;

    --darkgray: #202020;

    --red: #861a2e;

    --white: #ffffff;

    --logo: #363636;

    --box: #48B1AD;


}



[data-theme="light"] {



    --teal: #48B1AD;

    --lightteal: #CA87C5;

    --black: #191919;

    --gray: #48B1AD;

    --lightgray: #F0F0F0;

    --darkgray: #F0F0F0;

    --red: #AF6CAA;

    --white: #202020;

    --logo: #D8D8D8;

    --box: #AF6CAA;
}


.nav-link {
    background-color: var(--gray);
    color: var(--white);
}

.nav-link:hover {
    background-color: var(--darkgray);
    color: var(--white);
}

.big-title {
    color: var(--white);
    font-weight: 600;
}


.tab-content {
    border: solid 1px;
    border-top: none;
    background-color: var(--darkgray);
    border-bottom: solid 5px;
    color: solid var(--box) !important;
    border-radius: 0 20px 20px 20px;
    border-color: var(--box);
    overflow-x: hidden;


}


.col3decor,
.col3decor2 {
    border: solid var(--lightteal) 2px;
}

#card {
    background-color: var(--darkgray);
    transition: 0.5s ease;

}


.data-desc {
    color: var(--lightteal);
    transition: 0.5s ease;
    font-size: 20px;

}

.data {

    font-size: 30px;

}



.coltitle {
    color: var(--lightteal);

}

.btn-danger {
    color: var(--darkgray);
    background-color: var(--lightteal);
    border-color: var(--red);

}

.btn-danger:hover {
    color: var(--white);
    background-color: var(--red);
    border-color: var(--red);
}


.btn-danger a:hover {
    color: var(--white);
    background-color: var(--red);
    border-color: var(--red);
    text-decoration: none;
}

.title {
    color: var(--lightteal);
    font-weight: 600;

}

.title1 {
    color: var(--white);

}

.title2 {
    color: var(--white);



}

.title3 {
    color: var(--white);
    font-weight: 500;


}


.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--white);
    background-color: var(--darkgray);

}

p {
    color: var(--white);

}

.bbb {
    color: var(--white);

}

em {
    color: var(--teal);
    font-weight: 600;

}


audio {
    background-color: var(--lightgray);
    border-radius: 60px;

}


#bg-logo {

    opacity: 1;

}

svg {
    fill: var(--logo);
    transform: translateY(20px);



}

/*Simple css to style it like a toggle switch*/
.theme-switch-wrapper {
    display: flex;
    position: relative;
    bottom: 15px;
    margin: 10px;
    align-items: center;

    em {
        margin-left: 10px;
        font-size: 1rem;
    }

}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

.red {
    color: var(--lightteal);
}

input:checked + .slider {
    background-color: var(--teal);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.tg {
    border-collapse: collapse;
    border-spacing: 0;
}

.tg td {
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 10px 5px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    word-break: normal;
    border-color: var("--white");
}

.tg th {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 5px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    word-break: normal;
    border-color: var("--white");
}

.tg .tg-0lax {
    text-align: left;
    vertical-align: top
}

.tab-content > .active {
    position: absolute;
    top: 0;
    width: 96%;
}

.col-6 img {
    width: 50%;
}

.col-12 img {
    width: 35%;
}

.row{
    flex-wrap: wrap;
 }
 