/* login page start */
a {
    text-decoration: none;
}

.login-page {
    display: flex;
    width: 97vw;
    height: 97vh;
    justify-content: center;
    align-items: center;
}

#logo {
    display: block
}

#app-logo,
#logo {
    margin-right: auto
}

#app-logo {
    align-items: center;
    color: var(--text-opaque);
    display: flex;
    font-size: 24px;
    gap: 12px;
    margin-left: 20px;
    position: relative;
    transition: all .1s linear
}

#app-logo img {
    border-radius: 5px;
    height: 38px;
}

#app-logo:before {
    border: solid #4f4f4f99;
    border-width: 0 0 2px 2px;
    content: "";
    display: block;
    height: 12px;
    left: -20px;
    position: absolute;
    transform: rotate(45deg);
    transition: all .1s linear;
    width: 12px
}

#app-logo:hover {
    margin-left: 15px
}

#app-logo:hover:before {
    border: solid #4f4f4f99;
    border-width: 0 0 2px 2px;
    left: -22px
}

#logo-plate {
    display: block;
    height: 38px;
    min-width: 38px;
    overflow: hidden;
    width: 38px
}

div>i {
    color: rgb(84, 97, 108)
}

.login-container {
    width: 350px;
    height: 500px;
    box-shadow: 0px 0px 40px #0000001a;
    border-width: 0;
}

.card {
    border-radius: 0;
}

.price-card {
    margin-top: -200px;
    box-shadow: 0px 0px 40px #0000001a;
    border-width: 0;
    padding: 15px;
    position: relative;
    background-color: #fff;
}

.price-card-2 {
    margin-top: -200px;
    box-shadow: 0px 0px 40px #0000001a;
    border-width: 0;
    padding: 15px;
    position: relative;
    background-color: #fff;
}

.links {
    flex: 1 1 auto;
}

.nav-tabs .nav-link.active {
    font-weight: 600;
}

.nav-tabs .nav-link {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: #EDEFF0;
    border-radius: 0;
    border: 0;
}

.nav-tabs .nav-link.active:hover {
    background-color: rgb(255, 255, 255);
}

.nav-tabs .nav-link:hover {
    background-color: #D1D6D9;
}

.form-control {
    padding: 0.6rem 0.7rem !important;
}

.socialbtns {
    border: 1px solid black;
    color: black;
}

.socialbtns:hover {
    border: 1px solid rgb(4, 67, 241);
    color: rgb(4, 67, 241);
}

/* login page ended */

.profile-container {
    box-shadow: 0px 0px 40px #0000001a;
    border-width: 0;
    height: auto;
    margin-top: -200px;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.banner {
    height: 400px;
    position: relative;
    color: #f1f1f1;
}

.banner h1,
.banner h3 {
    position: relative;
    z-index: 2;
}

.banner::before {
    content: "";
    position: absolute;
    background-image: url("images/banner.jpg");
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-profile {
    height: 3rem;
    width: 3rem
}

ul {
    list-style: none;
}

.credit {
    font-size: larger;
    font-weight: 500;
    color: #86C32A;
}

.buycredits {
    text-decoration: none;
    font-weight: 500;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    padding: 1rem;
    --bs-dropdown-min-width: 13rem;
}

.navbar-nav .nav-link.active {
    font-weight: 500;
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s ease-in-out;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.icon::before {
    /* removed font- based rules */
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.pop,
.accordion:hover {
    background-color: #ffffff;
}

/* Style the accordion panel. Note: hidden by default */

.panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion:after {
    /* font: var(--fa-font-solid); */
    font-family: "Font Awesome 6 Free";
    content: "\2b";
    font-size: 20px;
    color: rgb(19, 109, 226);
    float: right;
    margin-right: 10px;
    font-weight: 700;
}

.pop:after {
    content: "\f068";
}

td {
    border-style: none;
    border-bottom-width: 0 !important;
}

.table tr.selectable:not(.selected) {
    cursor: pointer;
}

.nav-item:has(.btn) {
    margin-left: 0.3rem;
    background-color: #EDEFF0;
    border-radius: 10px;
    padding: 1px;
    font-weight: 600;
}

.nav-item:has(.btn):hover {
    background-color: #D1D6D9;
}

/* pricing page ended */

/* media query */
@media only screen and (max-width:992px) {
    .nav-item:has(.btn) {
        margin-top: 10px;
        width: 100%;
    }
}

@media only screen and (max-width:767px) {
    .price-card-2 {
        margin-top: 10px;
    }
}

/* media query */