@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --dm-primary: 0, 35, 101;
    --dm-primary-light: 0, 35, 101;

    --dm-secondary: 28, 28, 28;
    --dm-secondary-dark: 29, 34, 45;

    --dm-blue-low: 252, 253, 255;
    --dm-blue-light: 210, 222, 246;
    --dm-blue-medium: 124, 135, 168;
    --dm-white: 255, 255, 255;
    --dm-grey-light: 155, 155, 155;
    --dm-grey: 67, 67, 67;
    --dm-grey-dark: 51, 51, 51;
    --dm-black: 0, 0, 0;

    --dm-red: 191, 47, 56;
    --dm-orange: 255, 146, 38;

    --dm-fontFamily: "Inter", sans-serif;
    --dm-fontWeight300: 300;
    --dm-fontWeight400: 400;
    --dm-fontWeight500: 500;
    --dm-fontWeight600: 600;
    --dm-fontWeight700: 700;
    --dm-fontWeight800: 800;
    --dm-fontWeight900: 900;

    --opacity0: 0;
    --opacity050: .05;
    --opacity100: .1;
    --opacity150: .15;
    --opacity200: .2;
    --opacity250: .25;
    --opacity300: .3;
    --opacity400: .4;
    --opacity500: .5;
    --opacity600: .6;
    --opacity700: .7;
    --opacity800: .8;
    --opacity900: .9;
    --opacity1: 1;

    --dm-radius0: 0px;
    --dm-radius4: 4px;
    --dm-radius8: 8px;
    --dm-radius16: 16px;
    --dm-radius24: 24px;
    --dm-radius50: 50%;
}

html,
body {
    font-size: 14px;
    color: rgb(var(--dm-black));
    vertical-align: baseline;
    font-weight: 400;
    scrollbar-width: thin;
    font-family: var(--dm-fontFamily);
}

a {
    transition: all 0.5s;
    text-decoration: none;
    color: rgb(var(--dm-primary));
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    color: rgb(var(--dm-primary));
}

* {
    margin: 0px;
    padding: 0px;
    font-family: var(--dm-fontFamily);
    box-sizing: border-box;
    line-height: normal;
}

img {
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #b5b5b5;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
}

.scrollOff {
    overflow: hidden;
}

.btn {
    display: inline-block;
    line-height: 16px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    color: rgba(var(--dm-white));
    background-color: rgba(var(--dm-primary), var(--opacity1));
    border: 1px solid transparent;
    padding: 12px 15px;
    font-size: 12px;
    font-weight: var(--dm-fontWeight800);
    border-radius: var(--dm-radius4);
    text-transform: uppercase;
    transition: all 0.5s;
}

.btn:hover {
    color: rgb(var(--dm-white));
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
}

.btntheme-Free {
    color: rgb(var(--dm-white));
    background-color: rgb(var(--dm-primary-light));
    border: 1px solid rgb(var(--dm-primary-light));
}

.btntheme-Free:hover {
    color: rgb(var(--dm-primary));
    background-color: transparent;
    border: 1px solid rgb(var(--dm-primary));
}

.btnTheme-outline {
    color: rgb(var(--dm-primary));
    background-color: transparent;
    border: 1px solid rgb(var(--dm-primary));
}

.btnTheme-outline:hover {
    color: rgb(var(--dm-white));
    background-color: rgb(var(--dm-primary-light));
    border: 1px solid rgb(var(--dm-primary-light));
}

.btntheme-white {
    color: rgb(var(--dm-secondary));
    background-color: rgb(var(--dm-white));
    border: 1px solid rgb(var(--dm-white));
}

.btntheme-white:hover {
    color: rgb(var(--dm-primary));
    background-color: rgb(var(--dm-white));
    border: 1px solid rgb(var(--dm-primary));
}

.withIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.withIcon svg {
    flex: 0 0 12px;
    height: 12px;
}


.home-slider {
    padding: 62px 0;
    position: relative;
    background: rgb(var(--dm-primary));
}

.home-slider .container {
    position: relative;
    z-index: 3;
}

.home-slider .slider-title {
    font-size: 48px;
    color: rgb(var(--dm-white));
    font-weight: var(--dm-fontWeight700);
    line-height: 70px;
    margin-bottom: 10px;
}

.home-slider .slider-title span {
    color: rgb(var(--dm-white));
    display: block;
}

.home-slider .slider-text {
    font-size: 15px;
    color: rgb(var(--dm-white));
    font-weight: var(--dm-fontWeight400);
    line-height: 24px;
    margin-bottom: 24px;
}

.slider-btnGroup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0px;
}

.linePic {
    width: 64px;
}

.slider-btnGroup .btntheme-Free {
    background-color: rgb(var(--dm-white));
    border: 1px solid rgb(var(--dm-white));
    color: rgb(var(--dm-primary-light));
}

.home-slider-container {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.slider-btnGroup .btnTheme-outline {
    color: rgb(var(--dm-white));
    background-color: transparent;
    border: 1px solid rgb(var(--dm-white));
}

.customerReview-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customerReview-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customerReview-item {
    flex: 0 0 18px;
    height: 18px;
    display: flex;
}

.customerReview-item svg,
.customerReview-item img {
    width: 100%;
    height: 100%;
}

.customerReview-number {
    font-size: 15px;
    color: rgb(var(--dm-secondary));
    font-weight: var(--dm-fontWeight300);
    line-height: 20px;
}

.customerReview-text {
    font-size: 15px;
    color: rgb(var(--dm-blue-medium));
    font-weight: var(--dm-fontWeight300);
    line-height: 20px;
}

.home-bannerTabs {
    position: relative;
    border: 2px dashed rgb(var(--dm-blue-light));
    width: 456px;
    height: 456px;
    border-radius: var(--dm-radius50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerTabs-link {
    z-index: 4;
    position: absolute;
    background: rgb(var(--dm-white));
    height: 62px;
    width: 62px;
    border-radius: var(--dm-radius50);
    border: 4px solid rgb(var(--dm-white));
    box-shadow: 0px 1px 50px rgba(var(--dm-black), var(--opacity250));
    color: rgb(var(--dm-secondary));
}

.bannerTabs-link svg {
    height: 24px;
    width: 24px;
}

.bannerTabs-link.active {
    background: rgb(var(--dm-white));
    border: 4px solid rgba(var(--dm-red), var(--opacity500));
    box-shadow: none;
    color: rgb(var(--dm-primary-light))
}

.bannerTabs-link.tab1 {
    top: 0%;
    left: 47%;
    transform: translate(-50%, -50%);
}

.bannerTabs-link.tab2 {
    top: 17%;
    right: 5%;
    transform: translate(0%, -50%);
}

.bannerTabs-link.tab3 {
    top: 52%;
    right: 0%;
    transform: translate(50%, -50%);
}

.bannerTabs-link.tab4 {
    bottom: -4%;
    right: 6%;
    transform: translate(-50%, -50%);
}

.bannerTabs-link.tab5 {
    bottom: -6%;
    left: 24%;
    transform: translate(-50%, -50%);
}

.bannerTabs-link.tab6 {
    bottom: 28%;
    left: 1%;
    transform: translate(-50%, -50%);
}

.bannerTabs-link.tab7 {
    top: 20%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.home-bannerTabs .tab-content .home-bannerTabs-wrap {
    width: 352px;
    height: 352px;
    background: rgb(var(--dm-white));
    border-radius: var(--dm-radius50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0px 0px 0px 10px rgb(var(--dm-white));
    position: relative;
}

.home-bannerTabs-pic {
    width: 100%;
    height: 100%;
}

.home-bannerTabs-text {
    z-index: 3;
    position: absolute;
    bottom: 0;
    height: 100%;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 24px;
    color: rgba(var(--dm-white));
    font-weight: var(--dm-fontWeight700);
    line-height: 30px;
    text-transform: uppercase;
    background: rgba(31, 31, 31, 0);
    background: -moz-linear-gradient(top, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.82) 82%, rgba(133, 133, 133, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(31, 31, 31, 0)), color-stop(82%, rgba(31, 31, 31, 0.82)), color-stop(100%, rgba(133, 133, 133, 1)));
    background: -webkit-linear-gradient(top, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.82) 82%, rgba(133, 133, 133, 1) 100%);
    background: -o-linear-gradient(top, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.82) 82%, rgba(133, 133, 133, 1) 100%);
    background: -ms-linear-gradient(top, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.82) 82%, rgba(133, 133, 133, 1) 100%);
    background: linear-gradient(to bottom, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.82) 82%, rgba(133, 133, 133, 1) 100%);
}

.themeHeader {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.themeHeader-content {
    flex: 1 1 auto;
}

.themeHeader .themeHeader-title {
    font-size: 30px;
    color: rgb(var(--dm-secondary));
    font-weight: var(--dm-fontWeight700);
    line-height: 52px;
    margin-bottom: 10px;
}

.themeHeader .themeHeader-text {
    font-size: 15px;
    color: rgb(var(--dm-secondary));
    font-weight: var(--dm-fontWeight400);
    line-height: 24px;
    margin-bottom: 0px;
}

.themeHeader.white .themeHeader-title {
    color: rgb(var(--dm-white));
}

.themeHeader.white .themeHeader-text {
    color: rgb(var(--dm-white));
}

.themeHeader.theme .themeHeader-title {
    color: rgb(var(--dm-primary));
}

.themeHeader.theme .themeHeader-text {
    color: rgb(var(--dm-primary));
}

.home-about {
    background: rgb(var(--dm-primary));
    padding: 60px 0;
    position: relative;
}

.home-about-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.home-about-card .home-about-icon {
    margin: 0 auto 10px;
    width: 38px;
    height: 38px;
    background: rgb(var(--dm-white));
    border-radius: var(--dm-radius50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0px 0px 0px 3px rgb(var(--dm-white), var(--opacity300));
    color: rgb(var(--dm-primary));
}

.home-about-title {
    text-align: center;
    font-size: 30px;
    color: rgba(var(--dm-white));
    font-weight: var(--dm-fontWeight700);
    line-height: 36px;
}

.home-about-text {
    text-align: center;
    font-size: 12px;
    color: rgba(var(--dm-white));
    font-weight: var(--dm-fontWeight400);
    line-height: 16px;
}

.home-about:before {
    position: absolute;
    top: -62px;
    left: 2%;
    width: 192px;
    height: 72px;
    content: "";
    background: url(../images/dots.svg) no-repeat center / cover;
}

.home-about:after {
    position: absolute;
    bottom: -62px;
    right: 2%;
    width: 192px;
    height: 72px;
    content: "";
    background: url(../images/dots.svg) no-repeat center / cover;
    transform: rotate(180deg);
}

.home-plans {
    padding: 48px 0;
}

.planOffer-text {
    text-align: center;
    font-size: 15px;
    color: rgba(var(--dm-primary));
    font-weight: var(--dm-fontWeight600);
    line-height: 24px;
}

.plans-card {
    background: rgb(var(--dm-white));
    border-radius: var(--dm-radius8);
    box-shadow: 0px 3px 25px rgb(var(--dm-black), var(--opacity050));
    border: 1px solid #cfcfcf;
}

.plansCard-header {
    padding: 16px 10px;
    box-shadow: 0px 3px 25px rgb(var(--dm-black), var(--opacity050));
    border-bottom: 1px solid #cfcfcf;
}

.plansCard-name {
    text-align: center;
    font-size: 18px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight600);
    line-height: 22px;
}

.plansCard-body {
    padding: 16px;
}

.plansCard-price {
    text-align: center;
    font-size: 28px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight600);
    line-height: 34px;
    margin-bottom: 16px;
}

.plansCard-sub {
    font-size: 14px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight500);
    line-height: 24px;
}

.choosePlanBtn-wrapper {
    width: 160px;
    margin: 0 auto 16px;
}

.choosePlanBtn {
    width: 100%;
    display: block;
    padding: 12px 15px;
    font-size: 12px;
    line-height: 16px;
    text-transform: none;
    font-weight: var(--dm-fontWeight700);
}

.plansCard-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.plansCard-item {
    position: relative;
    padding-left: 25px;
    background: url(../images/check.svg) no-repeat left center;
    font-size: 15px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight400);
    line-height: 24px;
    background-size: 15px 15px;
}

.plans-card.selected,
.plans-card:hover {
    border: 1px solid rgb(var(--dm-primary-light));
}

.plans-card.selected .plansCard-header,
.plans-card:hover .plansCard-header {
    border-bottom: 1px solid rgb(var(--dm-primary-light));
}

.plans-card.selected .choosePlanBtn {
    color: rgba(var(--dm-white));
    background-color: rgb(var(--dm-primary-light));
    border: 1px solid rgba(var(--dm-primary-light));
}

.home-buickBook {
    padding: 10px 0 80px;
    position: relative;
}

.home-buickBook:before {
    z-index: -1;
    position: absolute;
    bottom: 5%;
    left: 0%;
    width: 279px;
    height: 563px;
    content: "";
    background: url(../images/QBL-style-bg.svg) no-repeat center / cover;
}

.buickBook-video-bg {
    position: relative;
    height: 390px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.buickBook-video {
    width: 366px;
    height: 366px;
    position: relative;
}

.buickBook-video img {
    border-radius: 18px;
}

.exploreTabs-content {
    padding-left: 20px;
    margin-top: 40px;
}

.playBtn {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: none;
}

.home-explore {
    position: relative;
    padding: 48px 0 20px;
    background: #002365;
}

.home-explore:after {
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0;
    width: 351px;
    height: 161px;
    content: "";
    background: url(../images/style-bg.png) no-repeat center / cover;
}

.home-explore .container {
    position: relative;
    z-index: 2;
}

.exploreTabs-tabs {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    margin-bottom: 40px;
    overflow: auto;
    margin: 0 auto 40px;
    max-width: min-content;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.exploreTabs-link {
    flex: 0 0 165px;
    min-width: 165px;
    padding: 20px;
    background: rgb(var(--dm-white));
    border: 1px solid #E5EEF1;
    border-radius: var(--dm-radius8);
    color: rgb(var(--dm-secondary));
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.exploreTabs-link svg {
    height: 18px;
    width: 18px;
}

.exploreTabs-text {
    text-align: center;
    font-size: 16px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight600);
    line-height: 20px;
    min-height: 40px;
}

.exploreTabs-link.active {
    background: rgb(var(--dm-white));
    border: 1px solid #9B3A6C;
    color: rgb(var(--dm-primary))
}

.exploreTabs-link.active .exploreTabs-text {
    color: rgba(var(--dm-primary));
}

.home-bannerTabs .tab-content .home-bannerTabs-wrap {
    width: 352px;
    height: 352px;
    background: rgb(var(--dm-white));
    border-radius: var(--dm-radius50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0px 0px 0px 10px rgb(var(--dm-white));
    position: relative;
}

.exploreTabs-pic {
    width: 440px;
    margin-bottom: -200px;
}

.exploreTabs-pic img {
    border-radius: var(--dm-radius16);
    box-shadow: 0px 3px 18px rgb(var(--dm-black), var(--opacity050));
}

.home-clients {
    padding: 200px 0 48px;
    background: rgb(var(--dm-white));
}

.clients-header {
    margin-bottom: 30px;
}

.clients-header .clients-header-title {
    font-size: 42px;
    color: rgb(var(--dm-secondary));
    font-weight: var(--dm-fontWeight700);
    line-height: 52px;
    margin-bottom: 0px;
}

.clients-header .clients-header-title span {
    color: rgb(var(--dm-primary));
}

.clients-header .clients-header-text {
    font-size: 18px;
    color: rgb(var(--dm-secondary));
    font-weight: var(--dm-fontWeight600);
    line-height: 24px;
    margin-bottom: 10px;
}

.clientsSlider-wrap .owl-item.active+.active .clientsSlider-pic-card {
    opacity: var(--opacity400);
}

.clientsSlider-wrap .owl-item.active+.active .clientsSlider-content {
    opacity: var(--opacity400);
}

.clientsSlider-wrap .clientsSlider-card {
    border-top: 1px solid rgba(var(--dm-black), var(--opacity100));
    padding: 36px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

.clientsSlider-wrap .clientsSlider-card::before {
    position: absolute;
    left: -2px;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(var(--dm-black), var(--opacity100));
    content: "";
}

.clientsSlider-pic-card {
    flex: 0 0 20%;
}

.clientsSlider-content {
    flex: 1 1 auto;
}

.clientsSlider-pic {
    margin-bottom: 20px;
}

.clientsSlider-pic img {
    border-radius: 30px 18px 0 18px;
}

.clientsSlider-author {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.clientsSlider-author-title {
    font-size: 14px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight600);
    line-height: 20px;
}

.clientsSlider-author-desi {
    font-size: 10px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight300);
    line-height: 14px;
}

.clientsSlider-content .clientsSlider-title {
    font-size: 24px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight700);
    line-height: 32px;
    margin-bottom: 0px;
}

.clientsSlider-content .clientsSlider-counter {
    font-size: 12px;
    color: rgba(170, 171, 182);
    font-weight: var(--dm-fontWeight300);
    line-height: 14px;
}

.clientsSlider-content .clientsSlider-counter .active-counter {
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight700);
}

.clientsSlider-content .clientsSlider-text {
    font-size: 16px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight400);
    line-height: 24px;
    margin-bottom: 0px;
}

.clientsSlider-wrap .owl-nav {
    position: absolute;
    top: -80px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.clientsSlider-wrap .owl-nav .btnnav {
    background: rgba(var(--dm-white));
    border: 1px solid rgba(var(--dm-black), var(--opacity100));
    border-radius: var(--dm-radius50);
    display: block;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clientsSlider-wrap .owl-nav .btnnav.active {
    background: rgba(var(--dm-white));
}

.home-needLooking {
    padding: 48px 0 20px;
    background: rgba(252, 253, 255, 1);
    background: -moz-linear-gradient(top, rgba(252, 253, 255, 1) 0%, rgba(252, 253, 255, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 81%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(252, 253, 255, 1)), color-stop(80%, rgba(252, 253, 255, 1)), color-stop(80%, rgba(255, 255, 255, 1)), color-stop(81%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(top, rgba(252, 253, 255, 1) 0%, rgba(252, 253, 255, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 81%, rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(top, rgba(252, 253, 255, 1) 0%, rgba(252, 253, 255, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 81%, rgba(255, 255, 255, 1) 100%);
    background: -ms-linear-gradient(top, rgba(252, 253, 255, 1) 0%, rgba(252, 253, 255, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 81%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(252, 253, 255, 1) 0%, rgba(252, 253, 255, 1) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 81%, rgba(255, 255, 255, 1) 100%);
}

.needLooking-card {
    padding: 25px 30px;
    background: rgb(var(--dm-white));
    border-radius: var(--dm-radius16);
    box-shadow: 0px 3px 18px rgb(var(--dm-black), var(--opacity050));
}

.needLooking-card .needLooking-title {
    font-size: 24px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight700);
    line-height: 32px;
    margin-bottom: 15px;
}

.needLooking-card .needLooking-text {
    font-size: 15px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight400);
    line-height: 24px;
    margin-bottom: 15px;
}

.needLooking-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 24px;
}

.needLooking-item {
    position: relative;
    padding: 0px 15px;
    background: rgb(252, 253, 255);
    font-size: 15px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight400);
    line-height: 24px;
}

.custom-checkbox .checkbox-label {
    display: flex;
    margin: 0px;
    align-items: center;
    gap: 10px;
}

.custom-text {
    flex: 1 1 auto;
    font-size: 15px;
    color: rgba(var(--dm-secondary));
    font-weight: var(--dm-fontWeight400);
    line-height: 24px;
}

.checkbox-checkbox-box {
    border-radius: var(--dm-radius4);
    height: 24px;
    width: 24px;
    flex: 0 0 24px;
}

.checkbox-checkbox-box .checkbox-inp {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    position: absolute;
    opacity: 0;
    z-index: -1;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.checkbox-checkbox-box svg {
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid rgb(102, 102, 102);
    border-radius: 2px;
    max-width: 100%;
    max-height: 100%;
    background-color: transparent;
    fill: transparent;
    padding: 3px;
}

.checkbox-checkbox-box svg path {
    fill: inherit;
}

.checkbox-checkbox-box input:checked~svg {
    border: none;
    background-color: rgb(var(--dm-primary));
    fill: rgb(var(--dm-white));
}

.needLooking-btnWrap {
    max-width: 140px;
    margin: auto;
}

.needLooking-btnWrap .btn {
    display: block;
    width: 100%;
}

.service-detail-info p span {
    line-height: 24px;
}

/* Start: Footer CSS Style */
.footer-main {
    padding: 30px 0;
    background: rgba(var(--dm-secondary));
    margin-top: 60px;
}

.footer-consultation {
    background: rgb(var(--dm-primary));
    padding: 30px 30px 0px;
    margin-top: -150px;
    margin-bottom: 40px;
    border-radius: var(--dm-radius4);
}

.footer-consultation-content {
    padding-bottom: 30px;
}

.consultation-btnWrap {
    max-width: min-content;
    min-width: max-content;
}

.footer-content-widget {
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
    display: flex;
}

.footer-content-widget .logo-footer img {
    display: block;
    max-width: 200px;
}

.footer-content-widget .fcw-text {
    font-size: 12px;
    margin: 0 0 25px;
    line-height: 18px;
    color: rgba(var(--dm-white));
}

.divider {
    height: 1px;
    width: 100%;
    margin: 20px 0 30px;
    background: rgba(50, 50, 50, 1);
    background: -moz-radial-gradient(center, ellipse cover, rgba(50, 50, 50, 1) 0%, rgba(50, 50, 50, 0) 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(50, 50, 50, 1)), color-stop(100%, rgba(50, 50, 50, 0)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(50, 50, 50, 1) 0%, rgba(50, 50, 50, 0) 100%);
    background: -o-radial-gradient(center, ellipse cover, rgba(50, 50, 50, 1) 0%, rgba(50, 50, 50, 0) 100%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(50, 50, 50, 1) 0%, rgba(50, 50, 50, 0) 100%);
    background: radial-gradient(ellipse at center, rgba(50, 50, 50, 1) 0%, rgba(50, 50, 50, 0) 100%);
}

.copyRight-text {
    font-size: 12px;
    margin: 0px;
    line-height: 14px;
    color: rgba(var(--dm-white), var(--opacity600));
}

.footer-menu-widget ul {
    display: flex;
    margin: 0;
    padding: 0px;
    justify-content: center;
    column-gap: 50px;
}

.socialMedia li {
    display: inline-block;
}

.socialMedia li img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(0%) hue-rotate(33deg) brightness(89%) contrast(85%);
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.socialMedia {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-content-widget .socialMedia li {
    display: inline-block !important;
    margin-right: 8px;
}

.footer-content-widget .socialMedia li a {
    display: block;
    font-size: 24px;
    color: rgba(var(--dm-white), var(--opacity1));
}

.footer-content-widget .socialMedia li a:hover {
    transform: scale(1.2);
}

.colp-box-wrap {
    margin-bottom: 20px;
}

.colp-title-box {
    display: flex;
    align-items: center;
    margin: 0 0 25px;
}

.colp-title-box .colp-title {
    color: rgba(var(--dm-white));
    font-size: 14px;
    font-weight: var(--dm-fontWeight700);
    flex: 1 1 auto;
}

.colp-title-box .user-arrow {
    display: none;
}

.footer-menu-widget ul li {
    display: inline-block;
}

.footer-menu-widget ul li a {
    color: rgba(var(--dm-grey-light));
    font-size: 14px;
    font-weight: var(--dm-fontWeight400);
    line-height: 30px;
}

.footer-menu-widget ul li a:hover {
    color: rgba(var(--dm-white));
}


/******About us css start*******/
.inner-slider-bg {
    background: #002365;
    padding: 30px 0;
    text-align: center;
}

ul.breadcrumb-list li {
    display: inline-block;
    color: #fff;
}

.breadcrumb-list li a {
    color: #fff;
}

.inner-slider-bg h2 {
    font-weight: 700;
    font-size: 36px;
    margin: 0 0 15px;
    color: #fff;
}

section.about-inner-desk.about-detail-section {
    padding: 50px 0;
}

.buickBook-video-bg.about-right-img img {
    border-radius: 16px;
    max-width: 90%;
}

ul.breadcrumb-list {
    display: flex;
    justify-content: center;
    column-gap: 15px;
    align-items: center;
    padding: 0;
    margin: 0;
}

ul.breadcrumb-list li {
    display: inline-block;
}

.themeHeader .about-left-detail p {
    margin-bottom: 15px;
    color: rgba(var(--dm-secondary));
    line-height: 24px;
}

section.home-buickBook.about-detail-section {
    padding: 60px 0;
}

/*******About us css End*******/

/******Contact us css start******/
.contact-section {
    padding: 50px 0;
}

.information {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.information span img {
    max-width: 20px;
}

.contact-info h3.title {
    font-weight: bold;
    font-size: 30px;
    margin: 0 0 15px;
}

.contact-info p.text {
    line-height: 24px;
    font-size: 14px;
    margin: 0 0 30px;
}

.information p {
    margin: 0;
}

.social-media {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.social-icons li {
    display: inline-block;
}

.social-icons li a img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(0%) saturate(17%) hue-rotate(176deg) brightness(103%) contrast(86%);
    width: 20px;
}

.social-media p {
    font-weight: 600;
    font-size: 18px;
}

.contact-form h3.title {
    font-weight: bold;
    font-size: 30px;
    margin: 0 0 15px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form .form-group .form-control {
    height: 44px;
}

.contact-form .form-group textarea.form-control {
    height: 100px;
    max-width: 100%;
}

.contact-form button.btn.btntheme-Free {
    padding: 12px 30px;
}

/******Contact us css end******/

/*******Static page css start******/
.static-page {
    padding: 30px 0 10px;
}

.static-about-detail h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0;
}

.static-about-detail p {
    line-height: 24px;
    text-align: justify;
}

/*******Static page css end******/

/******Service page css start*******/
.service-section {
    padding: 50px 0;
}

.service-img img {
    border-radius: 16px;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-info p {
    margin-bottom: 25px;
    color: rgba(var(--dm-secondary));
    line-height: 24px;
}

.service-section .row {
    align-items: center;
}

.service-img {
    width: 95%;
}

/******Service page css End*******/

/******Login page css start*******/
.login-inner-bg {
    background: rgb(var(--dm-primary));
    width: 100%;
    height: 220px;
}

.login-form-box {
    background: #fff;
    box-shadow: 0px 4px 170px 0px #00000033;
    border-radius: 16px;
    max-width: 580px;
    margin: -140px auto 50px;
    padding: 50px;
}

.login-title h2 {
    font-weight: 600;
    color: #212020;
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 32px;
}

.login-title p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #4A4B51;
}

.login-inner-form .form-group {
    margin-bottom: 30px;
}

.login-inner-form .form-group label {
    color: #4A4B51;
    font-weight: 600;
    margin-bottom: 5px;
}

.login-inner-form .form-control {
    height: 48px;
    border: solid 1px #E3E3E3;
    background: #F3F3F3;
    width: 100%;
    font-size: 16px;
    color: #4A4B51;
    font-weight: 400;
    border-radius: 4px;
}

.form-bottom {
    text-align: center;
    margin-top: 40px;
}

.form-bottom a {
    font-size: 16px;
    color: rgb(var(--dm-primary));
    margin-bottom: 8px;
    display: inline-block;
}

.form-bottom p {
    margin: 0;
    font-size: 16px;
    color: #4A4B51;
}

.login-form-box.edit-profile-form {
    max-width: 1050px;
}

.submit-btn-btm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-inner-form textarea.form-control {
    height: 100px;
    max-width: 100%;
}

.slider-btnGroup .withIcon {
    min-width: 200px;
}

.actionButtoon a:hover {
    color: #fff;
}

.mobile-logo-show {
    display: none;
}

.home-needLooking p.themeHeader-text.text-center {
    margin-bottom: 1rem;
}

#toast-container>.toast-error {
    background-color: red;
}

#toast-container>.toast-success {
    background-color: green;
}

#toast-container>.toast-warning {
    background-color: yellowgreen;
}

.profile-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;

    img {
        width: 28px;
        height: 28px;
    }
}

.profile-wrapper {
    margin-top: 30px;
}

.profile-sec {
    .nav-pills {
        box-shadow: 0px 4px 24px 0px #00000024;
        background-color: #fff;
        border-radius: 10px;
        padding: 0px;
        width: 100%;

        .nav-link {
            background-color: transparent;
            color: #333333;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            line-height: 24px;
            border-radius: 0px;
            text-align: left;
            border-left: 2px solid transparent;
            margin: 5px 0px;
        }

        .nav-link.active {
            color: #002365;
            border-color: #002365;
        }
    }



    form {
        padding: 14px 20px;
    }
}

.nav-logout {
    color: #D44545 !important;
    border-top: 1.5px solid #C8CDD6 !important;
    padding-top: 14px;
}

.thm-heading {
    border-bottom: 1.5px solid #F5EFEF;
    padding: 14px 20px;
    margin-bottom: 10px;

    h2 {
        font-size: 21px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
        color: #002365;


    }
}

.profile-row {
    display: grid;
    align-items: start;
    grid-template-columns: 20% 80%;
    gap: 54px;
}

.home-exploreTabs .tab-content {
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
}

.thm-input {
    margin-bottom: 20px;

    label {
        font-size: 16px;
        font-weight: 600;
        line-height: 27px;
        text-align: left;
        color: #4A4B51;

    }

    input {
        background-color: #F3F3F3 !important;
        border: 1.45px solid #E3E3E3 !important;
        height: 48px;
    }

    .form-control:disabled,
    .form-control[readonly] {
        background-color: #D0D0D0 !important;
    }
}

.enquiries-con {
    border: 1.45px solid #E3E3E3;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    margin: 16px 10px;
}

.enquiries-con-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1.45px solid #E3E3E3;
    background: #F8F8F8;

    h2 {
        color: #333333;
        font-size: 18px;
        font-weight: 700;
        line-height: 28.5px;
        margin-bottom: 0px;
    }
}

.enquiries-btn {
    background: #B5FFD6;
    border-radius: 4px;
    padding: 4px 10px 4px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
    color: #00873C;
    border: none;

}

.enquiries-sub-con {
    padding: 10px;
    text-align: left !important;
}

.enquiries-sm {
    color: #4A4B51;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 5px;
    width: 100%;
    display: block;
}

.payment-table {
    margin: 20px 16px;

    .table {
        border: 1.45px solid #E3E3E3;
        border-radius: 8px;
    }

    thead tr {
        border: 1.45px solid #E3E3E3;
        background: #F8F8F8;
        border-radius: 6px 6px 0px 0px;

        th {
            font-weight: 600 !important;

        }
    }

    .table>:not(caption)>*>* {
        padding: 14px;
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        color: #4A4B51;
        border-bottom: 1.45px solid #E3E3E3;
        vertical-align: middle;
        white-space: nowrap;
    }
}

.enquiries-padding {
    padding: 14px;
    padding-top: 0px;
}

.enquiry-d {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.enquiry-detail {
    padding: 10px;

    p {
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        color: #4A4B51;

    }
}

.enquiry-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.enquiry-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: baseline;
    border: none;
    background: transparent;
}



.select2-design .select2.select2-container {
    width: 100% !important;
    height: 48px !important;
}

.select2-design .select2.select2-container span.selection {
    height: 48px !important;
    display: block;
}

.select2-design .select2.select2-container .select2-selection.select2-selection--single {
    border: none;
    height: 48px !important;
}

.select2-design .select2.select2-container .select2-selection__rendered {
    height: 48px;
    border: solid 1px #E3E3E3;
    background: #F3F3F3;
    width: 100%;
    font-size: 16px;
    color: #4A4B51;
    font-weight: 400;
    border-radius: 4px;
    line-height: 48px;
}

.select2-design .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    top: 0px;
}

.home-exploreTabs .exploreTabs-btnWrap .btn.btntheme-white {
    border: solid 1px #002365;
}

.profile-wrapper {
    margin-top: 30px;
    min-height: calc(100vh - 500px);
}


/*******Satff Page css start*******/

.site-heading h2 {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.site-heading h2 span {
    color: #002365;
}

.site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.site-heading h4::before {
    background: #002365 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}

.site-heading {
    margin-bottom: 30px;
    overflow: hidden;
    margin-top: 0;
}

.team-area .single-item {
    margin-bottom: 30px;
}

.team-area .item .thumb {
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 270px;
}



.team-area .item .thumb img {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    height: 100%;
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.team-area .item:hover .thumb img {
    opacity: .6;
}

.team-area .item .thumb .social li {
    display: inline-block;
}

.team-area .item .thumb .social li a {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 0 2px;
    text-align: center;
    width: 40px;
}

.team-area .info {
    background: #ffffff none repeat scroll 0 0;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    padding: 20px 20px 20px;
    position: relative;
    text-align: center;
    z-index: 9;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.team-area .info .message {
    height: 50px;
    line-height: 40px;
    margin-left: -25px;
    margin-top: -25px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 50px;
}

.team-area .info .message a {
    background: #fff none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    box-sizing: border-box;
    color: #ff5a6e;
    display: inline-block;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    width: 50px;
}

.team-area .info .message a i {
    font-weight: 500;
}

.team-area .info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.team-area .info span {
    color: #ff5a6e;
    font-weight: 600;
    text-transform: uppercase;
}

/*******order summery page css start*******/
.inner-slider-bg p {
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: auto;
}

.summery-wrapper-box {
    display: flex;
    width: 100%;
    gap: 40px;
}

.summery-left-box {
    width: calc(100% - 510px);
}

.summery-wrapper-box h3 {
    font-size: 30px;
    margin: 0 0 30px;
    color: rgb(var(--dm-secondary));
    font-weight: var(--dm-fontWeight700);
}

.summery-plan-box {
    box-shadow: 0px 4px 34px 0px #0000000F;
    background: #fff;
    border-radius: 8px;
}

.summery-plan-title {
    background: #F8F8F8;
    border: solid 1px #E3E3E3;
    padding: 20px 30px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.price-label h5 {
    font-size: 20px;
    color: #333;
    font-weight: 400;
    margin: 0 0 5px;
}

.price-label h4 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.select-plan-btn {
    background: #D7E1F5;
    border-radius: 8px;
    padding: 15px 30px;
    font-weight: 700;
    color: #002365;
    font-size: 22px;
    line-height: normal;
}

.plan-feature-list {
    padding: 40px 30px;
}

.plan-feature-list h4 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 25px;
}

.order-summery-bx {
    box-shadow: 0px 4px 34px 0px #0000000F;
    background: #fff;
    border-radius: 8px;
    width: 100%;
    height: calc(100% - 70px);
}

.order-summery-right {
    width: 460px;
}

.order-summery-bx ul {
    margin: 0;
    padding: 20px 30px;
}

.order-summery-bx ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 7px 0;
}

.order-summery-bx ul li span {
    font-weight: 700;
}

.total-saving {
    background: #F8F8F8;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
}

.paynow-btn {
    padding: 30px;
}

.enquiry-summary {
    margin-top: 50px;
}

.enquiry-summary h3 {
    font-weight: 700;
    margin: 0 0 30px;
    font-size: 36px;
}

.enquiry-summary-box {
    box-shadow: 0px 4px 34px 0px #0000000F;
    background: #fff;
    border-radius: 8px;
    width: 100%;
}

.label-box {
    display: flex;
    width: 100%;
    padding: 25px 30px;
    border-bottom: solid 1px #E3E3E3;
    column-gap: 50px;
}

.label-box label {
    min-width: 120px;
    font-weight: 400;
    font-size: 20px;
}

.label-box p {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    color: #333333
}

.font-weight400 {
    font-weight: 400 !important;
}

.label-box label span {
    float: right;
}

.inner-slider-bg.order-summery-bg h2 {
    font-size: 64px;
    line-height: 80px;
}

.plan-feature-list .plansCard-item {
    font-size: 20px;
}

/******plans section*******/
.plans-dashboard-section {
    padding: 50px 0;
}

.sidebar-menu {
    box-shadow: 0px 4px 24px 0px #00000024;
    width: 280px;
    border-radius: 8px;
    padding: 10px 0;
}

.sidebar-menu ul {
    padding: 0;
    margin: 0;
}

.sidebar-menu ul li {
    display: inline-block;
    width: 100%;
}

.sidebar-menu ul li a {
    color: #333;
    font-weight: 600;
    font-size: 20px;
    display: inline-block;
    width: 100%;
    padding: 16px 30px;
}

.logout {
    border-top: solid 2px #C8CDD6;
    margin-top: 10px;
}

.logout a {
    color: #D44545 !important;
}

.sidebar-menu ul li a.active {
    border-left: solid 2px #002365;
    color: #002365;
}

.dashboard-plan-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
}

.dashboard-plans-right {
    width: calc(100% - 310px);
    background: #fff;
    box-shadow: 0px 4px 24px 0px #0000000A;
    border-radius: 8px;
}

.plan-title {
    padding: 20px;
    border-bottom: solid 1px #F5EFEF;
    font-size: 24px;
    color: #002365;
    font-weight: 600;
}

.dashboard-plan-box-wrapper {
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px 40px;
}

.plan-bx {
    background: #fff;
    border: solid 1px #E3E3E3;
    border-radius: 8px;
    width: calc(50% - 20px);
}

.plan-bx .summery-plan-title {
    padding: 15px 20px;
}

.plan-bx .summery-plan-title h5 {
    font-size: 16px;
}

.plan-bx .summery-plan-title h4 {
    font-size: 24px;
}

.plan-bx .summery-plan-title .select-plan-btn {
    font-size: 16px;
    padding: 13px 15px;
}

.plan-detail-inner {
    padding: 20px;
}

.plan-detail-inner label {
    font-size: 16px;
    color: #4A4B51;
    font-weight: 600;
    margin: 10px 0;
    width: 100%;
}

span.status-btn {
    background: #B5FFD6;
    padding: 5px 10px;
    font-size: 14px;
    color: #00873C;
    border-radius: 4px;
    margin-left: 5px;
}

.plan-title a {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.dashboard-plans-right.enquiry-detail-box {
    box-shadow: none;
}

.enquiry-detail-box .dashboard-plan-box-wrapper {
    padding: 15px 0;
}

.enquiry-detail-box .summery-plan-box {
    width: 100%;
}

.label-box:last-child {
    border-bottom: none;
}

.enquiry-detail-box .label-box label {
    min-width: 180px;
}

.notification {

    color: white;
    text-decoration: none;
    padding: 15px 26px;
    position: relative;
    display: inline-block;
    border-radius: 2px;
}


.notification .notification-badge {
    position: absolute;
    top: -7px;
    right: -10px;
    padding: 2px 6px;
    border-radius: 50%;
    background: red !important;
    color: white;
    background-color: red !important;
    margin-bottom: 15px !important;
    border-radius: 50%;
}