.cc {
    display: flex;
    justify-content: center;
    align-items: center;
}

a, a:hover{
    text-decoration:none
}
.bg-main {
    /*background-image: url("../../uploads/shopping.svg");* /
    background-image: url("../../uploads/shopping.svg");
    background-color: #cccccc;
    /* Used if the image is unavailable * /
    height: 100vh;
    /* You must set a specified height * /
    background-position: center;
    /* Center the image * /
    background-repeat: no-repeat;
    /* Do not repeat the image * /
    background-size: cover;
    /* Resize the background image to cover the entire container */

    background-color: #245e68;
}

.img-logo{
    width: 75px:
}
.bg-theme{
    color: #ffffff;
    background-color: #245e68;
}

.fa-stack[data-count]:after {
    position: absolute;
    right: 0%;
    top: 0%;
    content: attr(data-count);
    font-size: 40%;
    padding: .6em;
    border-radius: 999px;
    line-height: .75em;
    color: white;
    color: #ffd31d;
    text-align: center;
    min-width: 2em;
    font-weight: bold;
    background: white;
    border-style: solid;
}

.fa-circle {
    color: #ffd31d;
}

.red-cart {
    color: #F90000;
    background: white;
}

.old-price {
    /*color: #dc3545;*/
    text-decoration: line-through;
}

.category-title {
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid black;
    box-shadow: 5px 5px;
    
    
}

.overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

.logo {
    border-radius: 50%
}

@media only screen and (min-width: 600px) {
    .nino-nav-bar {
        display: flex;
        justify-content: space-between
    }
}

.subject-color {
    width: 50px;
    height: 50px;
    border-radius: 15%;
}

.tutor-flex {
    display: flex;
}

.tutor-flex img {
    max-width: 150px;
}


/*
.quote {
    display: flex;
    align-items: center;
}

.quote .fa {
    /*border: 2px solid white;* /
    display: flex;
    justify-content: center;
}
*/

.quote .quote-content .winner {
    color: gold
}

.footer {
    background-color: #ffdb58;
    color: #000;
    /*#726a95;*/
    /*padding: 10px;*/
    bottom: 0
}

.footer .content {
    /*border: 2px solid white;*/
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.footer .fa {
    margin: 10px;
    display: flex;
    justify-content: space-between;
}


/* Diagonal stacked paper effect */

.paper {
    background-color: #fff;
    /* Need position to allow stacking of pseudo-elements */
    position: relative;
    /* Padding for demo purposes */
    padding: 30px;
}

.paper,
.paper::before,
.paper::after {
    /* Add shadow to distinguish sheets from one another */
    box-shadow: 2px 1px 1px rgba(0, 0, 0, 0.15);
}

.paper::before,
.paper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #eee;
}


/* Second sheet of paper */

.paper::before {
    left: 7px;
    top: 5px;
    z-index: -1;
}


/* Third sheet of paper */

.paper::after {
    left: 12px;
    top: 10px;
    z-index: -2;
}