body{
    font-family: 'Montserrat', sans-serif;
}

.navbar-store{
    background-color: #ffffff !important;
    box-shadow: 0px 0px 20px 0px #75be4b96, 0px 0px 6px 0px #12a5ce91;
}

.casa-mae-text {
    background: linear-gradient(90deg, #75be4b, #12a5ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.cart-changed{
    animation: cart-rotating 0.5s linear;
}

@keyframes cart-rotating {
    20% {transform: rotate(35deg);}
    50% {transform: rotate(0deg);}
    70% {transform: rotate(-35deg);}
}

.navbar-user-dropdown::after,.navbar-cart-dropdown::after{
    content: none;
}

::after{
    content: none;
}

.navbar-user-dropdown:focus:not(:focus-visible),.navbar-cart-dropdown:focus:not(:focus-visible){
    outline: none !important;
    box-shadow: none;
}

.dropdown-menu{
    border: none;
    box-shadow: 7px 6px 20px 0px #00000030;
    background-color: white;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #3cb096;
    color: white!important;
}

.product-card{
    border: 0;
    cursor: pointer;
}

.product-card>.card-img-top{
    height: 350px;
    background-size: 100%;
    background-position: 50% 50%;
    box-shadow: 7px 6px 20px 0px #00000066;
    transition: all 0.5s;
    filter: brightness(1);
}

.product-card .card-title{
    color: #7e7e7e;
}

.product-card:hover>.card-img-top{
    background-size: 120%;
    filter: brightness(0.7);
}

.product-card{
    border: 0;
    cursor: pointer;
}

.product-card>.card-body{
    padding: 15px 0;
}

.price-tag{
    color: #1da7be;
    font-weight: bold;
}

.product-card:hover>.buy-legend{
    visibility: visible;
    opacity: 1;
}

.buy-legend{
    opacity: 0;
    visibility: hidden;
    color: white;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    font-weight: 500;
    transition: all 0.5s;
}

.product-details-img{
    box-shadow: 7px 6px 20px 0px #00000066;
    height: 400px;
    object-fit: cover;
}

.btn-casa-mae{
    box-shadow: -2px -2px 0px 0px #75be4b96, 2px 2px 0px 0px #12a5ce91;
    color: #7a7a7a;
    transition: all 0.5s;
}

.btn-casa-mae:hover{
    background: linear-gradient(90deg, #75be4b96, #12a5ce91);
    box-shadow: 0px 0px 0px 0px #75be4b96, 0px 0px 0px 0px #12a5ce91;
    color: white;
}

.btn-casa-mae:hover .double-chevron>i:nth-child(1){
    left: 0px;
    opacity: 1;
}

.btn-casa-mae:hover .double-chevron>i:nth-child(2){
    left: -5px;
    opacity: 1;
}

.color-picker{
    display: inline-block;
    height: 25px;
    width: 25px;
    border-radius: 30px;
    box-shadow: 0 0 4px 0px #808080;
}

.color-picker>i{
    opacity: 0;
    transition: all 0.5s;
    color: white;
    cursor: pointer;
}

.color-picker.selected>i{
    opacity: 1;
}

.color-picker:hover>i{
    opacity: 0.8;
}

.cart-details{
    box-shadow: 6px 6px 20px 7px #0000001a;
    border-radius: 10px;
    overflow-y: hidden;
}

.cart-details tfoot{
    box-shadow: 0px -1px #00000024;
}

.login-details{
    box-shadow: 6px 6px 20px 7px #0000001a;
    border-radius: 10px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: linear-gradient(90deg, #75be4b, #12a5ce);
    background-color: unset;
}

.student-card{
    box-shadow: 6px 6px 20px 7px #0000001a;
    border-radius: 10px;
}

.table>thead {
    color: #19a7c5;
}

.table>:not(:first-child) {
    border-top: 2px solid #19a7c5;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: #65ba5f0f;
}

.nav-pills .nav-link {
    color: #19a7c4;
}

footer{
    background: linear-gradient(90deg, #75be4b, #12a5ce);
    color: white;
}

.content{
    min-height: calc(100vh - 300px);
}

.navbar-remove-from-cart{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: red;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 1px black;
    opacity: 0;
    transition: all 0.5s;
}

.navbar-remove-from-cart:hover{
    opacity: 1;
    cursor: pointer;
}

.pay-option>i,.pay-option>img{
    color: #4fb47c;
    transition: all 0.5s;
    filter: brightness(1) invert(0);
}

.pay-option:hover>i,.pay-option:hover>img{
    color: white;
    filter: brightness(0) invert(1);
}

.pay-option{
    transition: all 0.5s;
    cursor: pointer;
    transform: scale(1);
    user-select: none;
    z-index: 1;
    box-shadow: 6px 6px 20px 7px #0000001a;
    border-radius: 10px;
    background: linear-gradient(90deg, white, white);
}

.payment-success-card{
    box-shadow: 6px 6px 20px 7px #0000001a;
    border-radius: 10px;
}

.pay-option::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #75be4b, #12a5ce);
    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
    box-shadow: 6px 6px 20px 7px #0000001a;
    border-radius: 10px;
}

.pay-option:hover{
    transform: scale(0.9);
    color: white;
}

.pay-option:hover::before{
    opacity: 1;
}

.pay-option:hover .btn-casa-mae {
    box-shadow: none;
    color: white;
}


.pay-info{
    box-shadow: 6px 6px 20px 7px #0000001a;
    border-radius: 10px;
}

#countdown {
    position: relative;
    margin: auto;
    height: 40px;
    width: 40px;
    text-align: center;
    transform: scale(2);
  }
  
  #countdown-number {
    color: #3db095;
    font-size: 0.6em;
    display: inline-block;
    line-height: 40px;
  }
  
  svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    transform: rotateY(-180deg) rotateZ(-90deg);
  }
  
  svg circle {
    stroke-dasharray: 113px;
    stroke-dashoffset: 0px;
    stroke-linecap: round;
    stroke-width: 2px;
    fill: none;
    animation: countdown 300s linear infinite forwards;
  }
  
  @keyframes countdown {
    from {
      stroke-dashoffset: 0px;
    }
    to {
      stroke-dashoffset: 113px;
    }
  }

@media (max-width: 576px) { 
    .account-pills{
        flex-direction: column;
    }
    
    .account-pills>div:nth-child(1){
        flex-direction: row !important;
        margin-bottom: 15px;
    }

    .navbar-brand{
        width: 100%;
        text-align: center;
    }
    
    .navbar-text{
        margin: 5px auto 0px auto;
    }
 }

 .activity-card>img{
    filter: brightness(1);
    transition: all 0.5s;
 }

 .activity-card:hover>img{
    filter: brightness(0.4)
 }