html {
    overflow-y: hidden;
}

body, html {
    /*font-family: sans-serif;*/
    overflow-x: hidden !important;
    background: white;
    font-size: 18px;
}

button {
    background: transparent;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

button:focus {
    outline: none;
}

a {
    text-decoration: none !important;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background: inherit;
    border-color: inherit;
}

img {
    width: 100%;
}

.text-light {
    color: #cccccc !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.mw-800 {
    max-width: 800px;
    margin: auto;
}

.btn-default {
    padding: 15px 50px;
    background: #25a3ff;
    transition: all 0.3s;
    color: white !important;
    border-radius: 10px;
    font-size: 22px;
    display: inline-block;
}

.btn-default:hover {
    background: #3c7fff;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
}
.form-link-btns .btn-default,
.form-link-btns .btn-default-grey{
    width: 200px;
}
.btn-default-grey{
    padding: 15px 30px;
    background: #cccccc;
    transition: all 0.3s;
    color: #25a3ff !important;
    border-radius: 30px;
    font-size: 22px;
    display: inline-block;
}
.btn-default-grey:hover{
    background: #3c7fff !important;
    color: white !important;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
}
.site-content-box{
    margin-top: 100px;
    background: #25a3ff;
    color: white;
    border-radius: 40px;
    font-size: 20px;
    padding: 50px 50px 100px;
}
.app-img{
    margin-top: 100px;
    text-align: center;
}
.app-img img{
    width: 300px;
}

/*Navbar*/
.nav-container {
    padding: 0 35px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: white;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    width: 180px;
}

.nav-top {
    margin-top:10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-wrapper ul, .profile-wrapper li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-wrapper {
    position: relative;
    padding: 0;
    margin: 0;
}

/*.profile-wrapper::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 27px;*/
/*    right: 10px;*/
/*    border-color: black transparent transparent;*/
/*    border-width: 6px;*/
/*    border-style: solid;*/
/*}*/

.profile-wrapper:hover::after {
    border-color: #25a3ff transparent transparent;
}

.profile {
    padding: 10px 30px 10px 10px;
    position: relative;
}

.profile:hover .menu li {
    cursor: pointer;
    background: -webkit-linear-gradient(#1f1f1f, #0a0a0a);
}

.profile .name {
    color: black;
    margin-left: 10px;
    margin-top: 10px;
    display: inline-block;
    font-size: 16px;
}

.profile img {
    width: 45px;
    height: 45px;
    display: inline;
    float: left;
    border-radius: 50%;
}

/* hide menu */
.menu {
    display: none;
    clear: both;
    margin: 20px 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 10px;
    z-index: 100000;
}

.menu li {
    font-size: 14px;
    margin: 0 0 0;
    padding: 15px 20px;
}

.menu li a {
    color: white;
}

.menu li:hover > a {
    color: #eee;
}

.menu li:hover {
    border-bottom: 1px solid white;
    border-radius: 3px;
}

.profile:hover .menu {
    display: block;
}

/*Nav End*/

/*Main Wrap*/
.main-wrap {
    /*display: flex;*/
    height: calc(100% - 94px);
    /*gap: 20px;*/
}

/*Sidebar*/
.sidebar {
    width: 100%;
    max-width: 300px;
    min-width: 300px;
    position: fixed;
    left: 0;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.16);
    height: 100%;
    border-radius: 0 10px 0 0;
    background: white;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 50px;
}

.sidebar-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.sidebar-profile .profile-name {
    margin-left: 10px;
}

.main-wrap .navbar {
    margin-top: 100px;
}

.main-wrap .navbar-nav {
    width: 100%;
    display: block;
}
.main-wrap #navbar {
    width: 100%;
}

.main-wrap .nav-item {
    display: block;
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
}

.main-wrap .nav-item .nav-link {
    padding: 15px 30px 15px 60px;
    display: block;
    color: #000000;
    position: relative;
    border-radius: 10px;
    transition: 0.3s;
    font-weight: 600;
}

.active {
    color: #3c7fff !important;
    font-weight: bold;
}

.main-wrap .nav-item .nav-link:hover {
    transform: translateY(-2px);
    color: #3c7fff;
    font-weight: bold;
}

.main-wrap .nav-item .nav-link .nav-icon {
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    display: flex;
    align-items: center;
}

/*Sidebar-End*/

.content {
    width: 100%;
    border-radius: 10px 0 0 0;
    padding: 120px 30px 50px 50px;
    min-height: 95vh;
    background: #f7f7f7;
}
.card-header{
    font-weight: bold;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(233,233,233,1) 66%, rgba(255,255,255,1) 96%);
    padding: 15px
}
.form-control{
    height: 60px;
}
.search-abs{
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.search-abs .btn-default{
    padding: 7px 15px;
    border-radius: 5px;
}
.table-responsive{
    max-height: 600px;
    overflow-y: auto;
}
th{
    padding: 5px 20px 5px 5px !important;
    font-size: 14px;
    position: relative;
}
.align-abs{
    position: absolute;
    top: 0;
    right: 0;
}
.align-abs button{
    background: #eee;
    padding: 5px;
    width: 20px;
}
td{
   padding: 2px 5px !important;
    font-size: 14px;
}
.red{
    background: #d90f0f;
    vertical-align: middle !important;
    text-align: center;
    color: white;
}
.green{
    background: #10b804;
    vertical-align: middle !important;
    text-align: center;
    color: white;
}
.orange{
    background: #FFAC1C;
    vertical-align: middle !important;
    text-align: center;
    color: white;
}

.min-max{
    text-align: center;
    margin: 0 110px 0;
    padding: 10px;
    border-radius: 5px;
    color: white;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
}

#results {
    text-align: center;
}

.centered-text {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    color: black;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 5px;
}

.left {
    /*border-right: 1px dotted #000;*/
    padding-right: 10px;
    position: relative;
    color: dimgrey;
    font-size: 25px;
}

.right {
    padding-left: 10px;
    position: relative;
    color: dimgrey;
    font-size: 25px;

}

.dotted-line {
    text-align: center;
    border-bottom: 1px dotted #000;
    width: 90%;
    height: 0;
    margin-top: 10px;
    position: relative;
}

.dotted-line::before{
    content: "";
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: green;
    /*margin-left: 70px;*/
}
.dotted-line::after {
    content: "";
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: red;
    /*margin-right: 70px;*/
}

.dotted-line::before {
    left: 0;
}

.dotted-line::after {
    right: 0;
}
@media screen and (max-width: 767px) {
    /* Your mobile-specific CSS styles go here */
    /* These styles will only apply when the screen width is 767px or less */
    .flex-container{
        margin: 0;
    }
    .min-max{
        margin: 0;
    }
    .left{
        font-size: 22px;
    }
    .right{
        font-size: 22px;
    }
    .result-names{
        font-size: 1.2rem;
    }
    .result-lable{
        font-size: 1rem;
    }
    .mini-lable{
        font-size: 16px;
    }
}
.top-card{
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.16);
    transition: all 0.3s;
    margin-bottom: 15px;
    background: white;
    height: 100%;
}
.top-card:hover{
    transform: translateY(-2px);
}
.top-card .heading{
    /*text-align: center;*/
    font-weight: bold;
    padding: 5px 0 5px;
    font-size: 14px;
}
.top-card .nai{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-card .number{
    font-weight: bold;
    font-size: 16px;
    color: #3c7fff;
}

.chart-wrap{
    display: flex;
    justify-content: space-between;
    align-items: start;

}
.top-chart{
    width: 100px;
    margin-top: -20px;
}
.top-chart canvas{
    width: 100% !important;
}
.chart-labels-wrap{
    font-size: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}
.chart-label{
    vertical-align: top;
}
.chart-labels-wrap .label-box{
    display: inline-block;
    width: 5px;
    height: 5px;
}
.chart-labels-wrap .label-box.higher{
    background: #3c7fff;
}
.chart-labels-wrap .label-box.on-market{
    background: #c7cad1;
}
.chart-labels-wrap .label-box.lower{
    background: #87b0ff;
}
.icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
}

.stats-wrap{
    background: #25a3ff;
    color: white;
    border-radius: 10px;
    padding: 30px 15px;
}

.stats-card{
    display: flex;
    gap: 25px;
}
.stats-card .stats-number{
    width: 40%;
}
.stats-graph{
    width: 60%;
}

/*Forms*/
.site-container{

    align-items: center;
    justify-content: center;
    padding: 15px 80px;
    height: 100vh;
}

.site-main-wrap{
    border-radius: 60px;
    overflow: hidden;
    width: 100%;
}
.site-sidebar{
    width: 35%;
    min-width: 450px;
    background: #25a3ff;
    text-align: center;
    padding: 50px 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.site-logo img{
    width: 180px;
}
.site-sidebar .navbar {
    padding: 0;
}

.site-sidebar .navbar-nav {
    width: 100%;
    display: block;
}

.site-sidebar .nav-item {
    display: block;
    padding: 0;
    width: 100%;
    margin-bottom: 30px;
}
.site-sidebar #navbar{
    width: 100%;
}
.site-sidebar .nav-item .nav-link {
    padding: 15px 30px;
    max-width: 270px;
    margin: auto;
    background: #cccccc;
    color: #25a3ff;
    position: relative;
    border-radius: 40px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
}

.site-sidebar .nav-item .nav-link.active {
    background: #25a3ff;
    color: white;
    border: none;
}

.site-sidebar .nav-item .nav-link:hover {
    transform: translateY(-2px);
    color: white;
}
.form-link-btns{
    margin-top: 50px;
    text-align: center;
}
.site-content{
    background: white;
    width: 100%;
    padding: 30px;
    max-width: 700px;
    margin: auto;
    border-radius: 20px !important;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.16);
}
.form-logo{
    text-align: center;
}
.form-logo img{
    width: 230px;
}
.form-container{
    max-width: 500px;
    margin: auto;
}
.form-container input.form-control{
    border: 1px solid #eeeeee;
    border-radius: 5px;
    padding: 15px;
}
.form-container input.form-control:focus{
    border: 1px solid #25a3ff;
}
.form-container input.form-control::placeholder{
    font-size: 18px;
}
.form-container .btn-default{
    width: 200px;
}
.form-link{
    color: #25a3ff !important;
}
.modal-header{
    background: #25a3ff !important;
}
.content-wrap{
    display: flex;
    gap: 20px;
}
.content-left-wrap{
    width: 100%;
}
.ads-wrap1{
    width: 250px;
    margin-top: 40px;
}
.ad{
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.16);
    background: white;
    border-radius: 5px;
    padding: 15px 7px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 15px;
}
.ads-img img{
    width: 100%;
}
.adss-text{
    display: block !important;
    font-weight: 600;
    font-size: 14px;
}
.ads-btn .btn-default{
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .profile-wrapper {
        display: none;
    }

    .main-wrap {
        flex-direction: column;
    }

    .sidebar {
        width: 0;
        min-width: 0;
        transition: all 0.3s;
        overflow: hidden;
        position: fixed;
        z-index: 1030;
        top: 0;
        left: 0;
        background: white;
    }
    .main-wrap .navbar {
         margin-top: 0;
         padding: 0;
        height: 100%;
        justify-content: center;
    }

    .sidebar-width {
        width: 300px;
        max-width: 300px;
        min-width: 300px;
        height: 100%;
    }

    #navbar {
        width: 100%;
    }

    .navbar-nav {
        padding: 0 15px;
    }

    .main-wrap .nav-item .nav-link {
        border-radius: 10px;
    }

    .metal-pricing-card {
        border-radius: 40px
    }

    .content {
        border-radius: 0;
        padding: 120px 0 30px;
    }
    .close-nav{
        position: absolute;
        right: 10px;
        top: 10px;
    }
    .site-container {
        padding: 15px;
        height: auto;
        flex-direction: column;
        min-height: 100vh;
    }
    .site-main-wrap {
        border-radius: 30px;
    }
    .site-main-wrap{
        flex-direction: column;
    }
    .site-sidebar {
        width: 100%;
        min-width: 100%;
        padding: 20px 10px;
    }
    .site-content {
        padding: 15px !important;
    }
}


@media screen and (max-width: 768px) {
    .content {
        padding: 120px 15px 30px;
    }
    .btn-default {
        font-size: 16px;
    }
    .btn-default-grey {
        font-size: 16px;
    }
    .stats-card-wrap{
        margin-bottom: 20px;
    }
    .ads-wrap1{
        display: none;
    }
}

/* Preloader */
.preloaderBg {
    position: fixed;
    z-index: 10000;
    top: 0;
    background: white;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-wrap {
    position: relative;
    width: 250px;
    height: 250px;
}

.preloader-logo {
    margin: auto;
    background: url(../img/onlycarlogo.png) no-repeat center;
    background-size: 150px;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 25px;
    left: 25px;
    animation: fadeIn 1s ease-in-out infinite;
    /*background: black;*/
}

.preloader-circle {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #25a3ff;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.scroll{
    overflow: auto;
}

.scroll::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.scroll::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

.scroll::-webkit-scrollbar-thumb
{
    background-color: #25A3FF;
}
.pagination{
    width: 300px;
}

.filter-section {
    height: 500px;
    overflow-y: scroll;
}

.filter-heading {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(233,233,233,1) 66%, rgba(255,255,255,1) 96%);
    color: black;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-text {
    font-size: 20px;
    font-weight: bold;
    color: black;
}
.table-main-heads{
    background-color: grey;
    color: white;
    height: 40px;
}
.table-heads{
    background-color: grey;
    height: 30px;
    color: white;
}
.table-blue-rows{
    background-color: deepskyblue;
    height: 40px;
}
.table-green-rows{
    background-color: lightgreen;
    height: 35px;
}
.hovertext {
    position: relative;
    border-bottom: 1px dotted black;
}

.hovertext:before {
    content: attr(data-hover);
    visibility: hidden;
    opacity: 0;
    width: 100px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
    transition: opacity 1s ease-in-out;

    position: absolute;
    z-index: 1;
    left: 0;
    top: 110%;
}

.hovertext:hover:before {
    opacity: 1;
    visibility: visible;
}
.spec-suggestion-div{
    width: 100%; border: 1px solid lightgrey
}
.spec-suggestions-list{
    background-color: floralwhite; list-style-type: none
}
.spec-suggestions-list:hover{
    background-color: lightgray;
}

.yeardropdown{
    height: 40px;
    /*font-weight: bold ;*/
    border-radius: 5px;
}
@font-face {
    font-family: 'Licenz';
    src: url('../fonts/Licenz.ttf') format('truetype');
    /* You can also include font-weight and font-style properties if needed */
}


