/* hosting page */
.selected {
    border: 2px solid var(--green);
}

.promo {
    font-size: 2rem;
    text-decoration: line-through;
}

.label {
    align-content: center;
    align-items: center;
    align-self: flex-start;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: var(--size-label);
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    transform: rotate(35deg);
    width: var(--size-label);
}

.label h5 {
    color: var(--white) !important;
    font-size: 0.8rem !important;
    font-weight: 700;
    /* Add padding for spacing inside the circular element */
    line-height: 1.2;
    margin: 0;
    /* Remove default paragraph margins */
    padding: 0.8rem;
}

@media (max-width: 600px) {
    .label {
        height: calc(var(--size-label) - 6px);
        /* Adjust the size for smaller screens */
        width: calc(var(--size-label) - 6px);
    }
}

/* .bg-primary {
    background-color: #FCC633;
    color: white;
} */
.bg-info {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    position: relative;
}

.bg-info p {
    color: var(--white) !important;
    position: unset;
}

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

.button_order {
    background-color: var(--green);
    border: solid 0.1rem var(--green);
    border-radius: 5rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 2rem;
    width: 75%;
}

.button_order:hover {
    background-color: #30bf30;
    border: solid 0.1rem var(--green);
    border-radius: 5rem;
    color: white;
    width: 75%;
}

.pricing-item {
    flex: 1;
    margin: 0 min(1rem, 10%) 3rem;
}

.pricing-item:hover {
    background-color: #f5f5f5;
}

.pricing-item-top {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    position: relative;
    text-align: center;
}

.subtitle {
    border-bottom: 1px solid #cecece;
    border-top: 1px solid #cecece;
    margin-top: 1.5rem;
    width: 70%;
}

.subtitle p {
    color: #616a71 !important;
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7rem;
    text-align: center;
}

.features ul {
    align-items: center;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.features ul li {
    color: #616a71;
    flex: 1;
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.4rem;
    padding-bottom: 1rem;
    position: relative;
    text-align: center;
}

.package-list {
    align-items: center;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.package-list li {
    color: #616a71;
    flex: 1;
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.4rem;
    padding-bottom: 1rem;
    position: relative;
    text-align: center;
}

.empty-li::before {
    content: " ";
}

.package-name {
    font-family: "Raleway", sans-serif;
    font-size: 2.6rem !important;
    font-style: normal;
    font-weight: 700;
    line-height: 3.6rem;
    text-align: center;
    width: 90%;
    word-wrap: normal;
}

.package-price {
    color: var(--green);
    font-size: 3.4rem;
    font-weight: 700;
}

.webhosting-package-wrapper {
    /* height: calc(100vh - 10px);
      position: relative; */
}

.order-button {
    background-color: var(--red);
    border: .2rem solid var(--white);
    color: var(--white);
    opacity: 1;
    width: 100%;
}

.order-button:hover {
    background-color: var(--white);
    border: .2rem solid var(--red);
    color: var(--red);
    opacity: 1;
    padding: -.2rem 0;
    width: 90%;
}

.packages-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 90%;
}

.more-info {
    margin: 1rem auto;
    text-align: center;

    & > i {
        margin-right: 0.3rem;
    }

    & > a {
        color: #2b2c35 !important;

        &:hover {
            color: var(--green) !important;
            cursor: pointer;
        }

        &:focus {
            color: var(--green) !important;
        }
    }
}

.form {
    flex: 1 !important;
}

@media (max-width: 768px) {
    .inner-hero-section-content h3 {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 2rem;
        width: 100%;
    }

    #cart {
        bottom: 100px;
        right: 17px;
    }

    :root {
        --size-label: 60px;
    }

    .label {
        right: -20px;
        top: -20px;
    }

    .label h5 {
        font-size: 0.7rem !important;
    }
}
