@import url("utilities.css");

.navbar-main {
    margin-bottom: 0;
    background-color: white;
    border: 0;
    min-height: 38px;
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    padding-top: 1em;
    padding-bottom: 1em;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-radius: 0 !important;
}

.navbar-main .navbar-nav > li > a {
    color: var(--text);

    &:hover {
        background-color: white;
        color: var(--primary_blue);
    }
}

#Secondary_Navbar-Account {
    background-color: white;
}

body {
    background-color: var(--background);
}

section#header {
    display: none;
}

section#main-body {
    margin-top: 50px;
    background-color: var(--background);
}

.home-services {
    .col-md-3 {
        height: 190px;
        margin-bottom: 1em;

        .card {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;

            .icon {
                margin-bottom: 8px;
            }
        }
    }
}

/* Cards */
.full-width {
    border: 2px solid var(--primary_blue);
    border: 2px solid #0298dd80;

    .icon {
        margin-right: 1em;
    }
}

.small-card {
    .icon {
        margin: 0 auto;
    }
}

.icon {
    width: 50px;
    height: 50px;
    margin-right: 1em;
}

/* Web hosting page  */
.web_card {
    margin-bottom: 12px;
    padding-top: 0.5em !important;

    .card-body {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0 !important;

        .btn {
            margin-left: 1em;
        }

        .details {
            h4 {
                font-weight: 500;
            }

            span {
                color: #b0b0b0;
            }
        }

        .actions {
            position: relative;
            top: 4px;
        }

        .btn-primary {
            padding-left: 24px;
            padding-right: 24px;
        }
    }
}

.btn-circle {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
}

.fixed-lr {
    position: absolute;
    display: flex;
    justify-content: end;
    width: 100%;
    bottom: 10px;
    right: 10px;
}

.btn-plus {
    font-size: 3rem;
}

.main-content {
    position: relative;
    min-height: 100vh;
}

@supports (position: sticky) or (position: -webkit-sticky) {
    .fixed-lr {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        padding-bottom: 20px;
    }
}

.box-shadow {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); /* iOS <4.3 & Android <4.1 */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.ha-badge {
    position: absolute;
    top: 10px;
    right: 30px;
}

.badge {
    background-color: var(--primary_blue);
}

