


.general-card {
    /* background-color: greenyellow; */
}

.sec-1 {
    padding-left: 0.5% !important;
    padding-right: 0.5% !important;
}

.sec-inner-1 {
    background-color: white;
    /* margin: 10px; */
    position: relative;
    padding: 5%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.5);

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.sec-inner-1>span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Makes the span full-width within the div */
    text-align: center;
    /* Centers the content horizontally */
    background-color: #D8EDD2;
    /* For visualization purposes */
    /* color: white; */
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.sec-2 {
    padding-left: 0.5% !important;
    padding-right: 0.5% !important;
}

.sec-inner-2 {
    background-color: white;
    position: relative;
    height: 150px;
    border-radius: 10px;
    padding: 2% 10%;
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.5);


}

.sec-inner-2>span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Makes the span full-width within the div */
    text-align: center;
    /* Centers the content horizontally */
    background-color: #D8EDD2;
    /* For visualization purposes */
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.sec-3 {
    padding-left: 0.5% !important;
    padding-right: 0.5% !important;
    /* box-shadow: 0px 0px 50px black; */
}

.sec-inner-3 {
    background-color: white;
    position: relative;
    /* padding: 10% 0 10% 0; */
    padding-top: 10%;
    /* padding-bottom: 20%; */
    padding-left: 13%;
    padding-right: 13%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.5);


}

.sec-inner-3>span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Makes the span full-width within the div */
    text-align: center;
    /* Centers the content horizontally */
    background-color: #D8EDD2;
    /* For visualization purposes */
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.provider-name {
    background-color: purple;
    padding-left: 10%;
    padding-right: 10%;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 12px;
    font-weight: 700;

}

.btn-add {
    background-color: #269B07;
    /* Replace with your custom color */
    color: #fff;
    /* Replace with your desired text color */
    width: 100%;
}

.btn-add:hover,
.btn-add:focus {
    background-color: #146c43;
    /* Replace with a different color for hover/focus effect */
    color: #fff;
    /* Add any other custom styles for hover/focus state */
}

.btn-phone {
    margin-top: 2%;
    color: #146c43;
    border-color: #146c43;
    width: 100%;
}

.btn-phone:hover,
.btn-phone:focus {
    background-color: #146c4310;
    /* Replace with a different color for hover/focus effect */

    color: #146c43;
    border-color: #146c43;
    /* Add any other custom styles for hover/focus state */
}

.rdg-product-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.rdg-product-price span {
    font-size: 1.5rem;
    font-weight: 200;

}

.bi-star-fill {
    color: #FDCC20;
}

.bi-star-half {
    color: #FDCC20;
}

.provider-name div:nth-child(1) {
    text-align: center;

    /* Center text vertically */
    /* display: flex; */
    justify-content: flex-start;
    align-items: center;

    /* Set the height to occupy the entire viewport height (100vh) */
    /* height: 100%; */
    width: 50%;
}

.provider-name div:nth-child(2) {
    text-align: center;

    /* Center text vertically */
    /* display: flex; */
    justify-content: flex-end;
    align-items: center;

    /* Set the height to occupy the entire viewport height (100vh) */
    /* height: 100%; */
    width: 50%;
}

.provider-name a{
    color: black;
    text-decoration: underline !important; 
}



/* 
 *
 * ===== PARA LAS CARDS QUE SON VERTICALLY =====
 *
*/

/* .general-card-v{
    padding-right: 10%;
    padding-left: 10%;
} */

.general-inner-card-v {
    height: 100%;
    /* background-color: #D8EDD2; */
    

}

.sec-1-v {
    background-color: #D8EDD2;
    padding: 4% 3%;
    font-weight: 600;
    margin: auto;
    border-radius: 12px 12px 0 0;
    font-size: 30px;
    width: 100%;
}



.sec-2-v{
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    margin-top: 10%;
    margin-bottom: 5%;
    /* max-width: 100px;
    max-height: 100px; */
}

.sec-2-v img{
    padding: 5% 10% 5% 10%;
    width: 65%;
    /* height: 6rem; */

    max-height: 100%;
    max-width: 100%;
}

.sec-3-v-period{
    font-weight: 600;
    font-size: 25px;
}
.sec-3-v-price{
    font-size: 50px;
    font-weight:600 ;
}

.sec-4-v{
    font-weight: 200;
    font-size: 20px;
}

.sec-5-v{
    margin-top: 5%;
    margin-bottom: 5%;
}

.btn-add-v {
    padding: 2% 7% 2% 7%;
    background-color: #269B07;
    /* Replace with your custom color */
    color: #fff;
    /* Replace with your desired text color */
    /* width: 100%; */
}

.btn-add-v:hover,
.btn-add-v:focus {
    background-color: #146c43;
    /* Replace with a different color for hover/focus effect */
    color: #fff;
    /* Add any other custom styles for hover/focus state */
}

.sec-parent-v{
    /* padding-right: 10%;
    padding-left: 10%; */
    border-radius: 12px 12px 12px 12px ;
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.5);
   /* margin-right: 5%; */
   padding-bottom: 20px;
}


/* 
 *
 * =====   / PARA LAS CARDS QUE SON VERTICALLY =====
 *
*/

/*
    ===== PARA LOS BOTONES DE LOS STEPTERS
*/


/*        #btnStep1:hover,
#btnStep1:focus {
    background-color: #233682;
    /* Replace with a different color for hover/focus effect 
    color: #fff;
    /* Add any other custom styles for hover/focus state */
/*}

#btnStep2:hover,
#btnStep2:focus {
    background-color: #233682;
    /* Replace with a different color for hover/focus effect 
    color: #fff;
    /* Add any other custom styles for hover/focus state */
/*}

#btnStep4:hover,
#btnStep4:focus {
    background-color: #233682;
    /* Replace with a different color for hover/focus effect 
    color: #fff;
    /* Add any other custom styles for hover/focus state */
/*}
    

/*
    ===== // PARA LOS BOTONES DE LOS STEPTERS
*/