@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");

*,
button,
input {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --bg-shape-color: linear-gradient(120deg, #343A4F, #0F1620);
    --lightblue: #3D9DEA;
    --darkblue: #4A4EEE;
    --text-color: #D5E1EF;
}

.summary {
    background: #001c38;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    
}
/* .container {
    display: flex;
    justify-content: center;
    padding: 40px 0px;
} */

.main-content {
    box-shadow: 0 0 20px 8px #d0d0d0;
    padding: 4px;
    border-radius: 20px;
    width: 600px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.title {
    text-align: center;
    transform: prespective(1000px) translate(-50%, -50%);
}

.title::after {
    content: '';
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
    background-color: #0f0f10;
    height: 85%;
}
.title span {
    text-transform: uppercase;
    font-size: 2em;
    color: rgb(15, 94, 221);
    transform-style: preserve-3d;
}

.with-gradient {
    background: rgb(0,131,255);
    background: linear-gradient(180deg, #001c38 30%, rgba(0,212,255,0) 00%);
}

.final-price {
    display: flex;
    justify-content: center;
    flex-direction: column;
align-items: center;

    
}

.final-price span {
    display: flex;
    justify-content: center;
    flex-direction: column;
align-items: center;
    width: 200px;
    height: 200px;
    padding: 2rem;
    border: 6px solid rgb(255, 255, 255);
    border-radius: 50%;
    font-size: 2.25rem;
    box-shadow: 0 0rem 1.5rem rgb(237, 237, 237);
}

.tooltip-inner {
    text-align: left;
}
/* .card {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 2px 1px #d0d0d0;
    width: 80%;
    padding: 2px 20px;
}

.card-title {
    text-align: center;
    padding: 24px;
    background-image: var(--darkblue);
    margin-bottom: 16px;
    font-size: 32px;
    letter-spacing: 3.2px;
    color: #000;
}


.card-footer {} */


