:root {
    --blue: #5e72e4;
    --indigo: #5603ad;
    --purple: #7f00ff;
    --pink: #e100ff;
    --red: #f5365c;
    --orange: #fb6340;
    --yellow: #ffd600;
    --green: #2dce89;
    --teal: #11cdef;
    --cyan: #2bffc6;
    --white: #fff;
    --gray: #8898aa;
    --gray-dark: #32325d;
    --light: #ced4da;
    --lighter: #e9ecef;
    --dark: #212529;
    --darker: black;
    --neutral: #fff;

    --primary: #9C27B0;
    --primary-light: #CE93D8;
    --primary-dark: #7B1FA2;

    --secondary: #FFEB3B;
    --secondary-light: #FFF59D;
    --secondary-dark: #FBC02D;

    --basic: #172b4d;
    --default: #172b4d;
    --success: #2dce89;
    --info: #11cdef;
    --warning: #fb6340;
    --danger: #f5365c;

    --background: #fafafa;
    --surface: #ffffff;
    --on-primary: #fff;
    --on-secondary: #000;
    --on-background: #000;
    --on-surface: #808080;

    --primary-color: #9C27B0;
    --primary-color2: linear-gradient(97.85deg, #9C27B0 -54.32%, #7B1FA2 150.59%);
    --title-color: #141313;
    --text-color: #777777;
    --border-color: #201f1f17;
    --gradient-color: linear-gradient(
      279.58deg,
      rgba(103, 0, 151, 0.75) -55.92%,
      rgba(80, 192, 255, 0.75) 141.72%
    );
    --shadow-color: 0px 10px 30px rgba(118, 85, 225, 0.3);
    --box-shadow: 0px 10px 30px rgba(57, 56, 61, 0.205);
    --box-shadow2: 0px 10px 25px rgba(0, 0, 0, 0.2);

    /* font family variables. */
    --poppins: "Poppins", sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    /* font-family: 'Open Sans', sans-serif; */
    font-family: var(--poppins);
    background: var(--background);
    color: var(--on-surface);
    line-height: 1.5;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--poppins);
    font-weight: 700;
    font-style: normal;
    color: #333;
    font-display: swap;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

a, a:hover{
    text-decoration: none;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}


a {
    color: var(--on-surface);
    text-decoration: none;
    background-color: transparent;
  }

  a:hover {
    color: var(--primary);
    text-decoration: none;
  }

  .c-pointer{
      cursor: pointer;
  }

  /********************************** Bootstarp FIX ***********************************/

  .background{
      background: var(--background);
  }

  .surface{
      background: var(--surface)
  }

  .card{
      border: none;
  }


  .form-control, .form-control:focus, .form-control:hover,
  .form-control:active, .form-control:visited{
    outline: none;
    box-shadow: none;
    border: 1px solid #efefef;
  }

  .btn-primary {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
    -webkit-box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 12px 40px;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }

  .btn-primary:hover {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
  }


  .btn-check:focus + .btn-primary, .btn-primary:focus {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
  }
  .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
  }
  .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
  }
  .btn-primary:disabled, .btn-primary.disabled {
    color: var(--on-primary);
    background-color: var(--primary);
    border-color: var(--primary);
  }




  .btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border: 2px solid var(--primary);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 30px;
    padding: 12px 40px;
    display: inline-block;

  }

  .btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    -webkit-box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 8px 10px 0 rgb(0 0 0 / 20%);
  }


  .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
  }
  .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
  }
  .btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
  }
  .btn-outline-primary:disabled, .btn-outline-primary.disabled {
    color: var(--primary);
    background-color: transparent;
  }

  .text-primary{
      color: var(--primary) !important;
  }
  /************************************************************************************/


/********************************** 5. Product Card CSS ***********************************/

.product-card{
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.product-details{
    padding: 1.5rem 0;
}

.rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-title{
    font-size: 13px;
    color: #404553;
    margin-bottom: 8px;
}

.product-price {
    text-transform: uppercase;
    font-weight: 800;
    color: #404553;
    margin-bottom: 0;
    font-size: 1rem;
}

.product-price del {
    text-transform: uppercase;
    color: #B2B8CA;
    font-size: 14px;
    font-weight: normal;
}

.rating-rate {
    width: 50%;
    color: rgb(245, 165, 35);
    font-size: 12px;
}

.rating-count {
    color: #B2B8CA;
}

.discount-box-1{
    text-transform: uppercase;
    background: var(--primary);
    color: var(--on-primary);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

.floating-discount {
    position: absolute;
    top: 5px;
    right: 0;
}

.floating-discount span{
    border-radius: 4px 0 0 4px;
}

.product-image{
    margin: 1px;
}

.product-image img {
    display: block;
    margin: 0 auto;
    height: 170px;
    width: 100%;
}

.product-actions {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -100%;
    transition: left 0.5s ease-in-out;
    z-index: 999;
}

.product-actions a{
    display: flex;
    font-size: 1rem;
    background: #fff;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #efefef;
}

.product-card:hover .product-actions{
    left: 10px;
}

.product-card:hover .product-image{
    outline: 1px solid var(--primary-light);
}

.product-actions a:hover{
    background: var(--primary);
    color: #fff;
    border: none;
}

.product-link{
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 99;
}




/* ======================================  12. Product Details CSS ========================================== */
/* .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
}

.product-breadcrumb .breadcrumb{
    background: none;
}

.product-breadcrumb li{
    font-weight: 600;
}

.product-breadcrumb .active{
    color: #999;
} */

.pd-left, .pd-right{
    background: var(--surface);
    /* border-radius: 6px; */
    padding: 1rem;
    /* box-shadow: 4px 4px 15px -5px rgba(0, 0, 0, 0.25); */
}

.product-content h4{
    color: var(--star-color)
}

.product-content p{
    max-width: 85%;
}

.brand span:last-child{
    color: var(--star-color)
}

.share-media{
    display: flex;
    align-items: center;
}

.share-media a{
    display: block;
    margin-right: 1rem;
    border: 1px solid #ccc;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    padding: 4px;
}

.product-content h1{
    font-weight: 400;
    font-size: 1.6rem;
}

.pd-brand{
    color: rgb(245, 165, 35);
}

.pd-label{
    padding: 0.3rem 0;
}

.pd-label span{
    color: #888;
    font-size: 14px;
}

.pd-label a{
    font-size: 14px;
    color: blue
}

.pd-price{
    display: flex;
    align-items: center;
    margin: 0.7rem 0;
}

.pd-price h4{
    margin: 0 1rem;
}

.pd-price del{
    color: #888;
}


.qty-taker input{
    max-width: 50px;
    text-align: center;
}


/* ********************************* Search box css   **********************/
.searchbar{
    flex-grow: 1;
}


.search-box, .search-inputs {
    display: flex;
    width: 100%;
}

.search-inputs{
    border: 1px solid #eee;
    border-radius: 4px 0 0 4px;
}

.search-input{
	flex-grow: 1;
}

.searchbar input, .searchbar select, .searchbar button{
	border: none;
	outline: none;
	border-radius: 0;
	padding: 0.55rem 1rem;
}

.searchbar select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 4px 0 0 4px;
    width: 150px;
    border-right: 0px solid #fff;
    background: #fff;
}


.search-box input {
    color: #555;
    width: 100%;
    border-left: 1px solid #eee;
}


.searchbar button{
    outline: none;
    background: var(--primary);
    color: var(--on-primary);
    border: 1px solid var(--primary);
    border-radius: 0 4px 4px 0;
    height: 100%;
}


/********************************** 3. Menubar CSS ***********************************/
.menubar-area{
    background-color: #111827;
}

.level-1>a {
    display: block;
    padding: 1rem 1.5rem;
    background-color: var(--primary);
    color: var(--on-primary);
}

.level-1>a .fa-angle-down{
    display: none;
}


.level-1, .level-2{
    position: relative;
}


.level-1-dropdown>li>a{
    padding: 1rem 1.5rem;
    display: block;
    font-size: 14px;
}

.level-2>a>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.level-1-dropdown>li>a:hover{
    background: #f8f8f8;
}

.level-2-dropdown{
    position: absolute;
    left: 100%;
    background: #fff;
    min-width: 600px;
    left: 100%;
    /* box-shadow: 0px 0px 10px #ddd; */
    visibility: hidden;
    border: 1px solid #ebebeb;
    opacity: 0;
    top: 0;
    transform: translateY(100%);
    display: none;
    padding: 1rem .5rem;
}

.level-1-dropdown{
    position: absolute;
    min-width: 300px;
    background: #fff;
    /* box-shadow: 0px 0px 10px #ddd; */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    display: none;
}


.level-2-dropdown .row{
    width: 100%;
}

.level-2-dropdown a{
    display: block;
    /* margin-top: 1rem; */
}

.menubar-right a{
    color: var(--on-primary) !important;
}

.menubar-area .navbar-toggler{
    color: var(--on-primary);
}


.level-2-dropdown h6 {
    font-weight: normal;
    padding: 10px 0;
    font-size: 14px;
}

  /********************************** 11. Footer Area CSS ***********************************/
.footer-section{
    background: #253237;
    padding: 3rem 0;
    color: #717171 !important;
}

.footer-section h5{
    color: #fff;
    margin-bottom: 10px;
}

.footer-section a{
    color: #7a7a7a !important;
    transition: padding 500ms ease;
    cursor: pointer;
}

.footer-section li {
    padding: 0.2rem 0;
}

.footer-section li:hover a{
    color: #fff;
    padding-left: 10px;
}

.site-info h2{
    color: #fff;
}

.need_help{
    display: flex;
    margin-top: 10px;
    align-items: center;
}

.need_help i{
    font-size: 50px;
    margin-right: 15px;
    color: var(--primary-light);
}

.phone{
    color: #fff;
    font-size: 22px;
}

.social{
    margin-top: 30px;
}

.social a{
    margin-right: 20px;
    font-size: 25px;
}

.social i{
    color: #fff;
}

.app-badge{
    display: flex;
    margin-right: 10px;
    align-items: center;
}



.payment-accept{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;

}

.payment-accept a {
    display: block;
    background: var(--on-primary);
    border-radius: 4px;
    margin: 0.5rem;
    padding: 1rem .5rem;
}

.payment-accept img{
    width: 80px;
}


.footer-section .row>div{
    margin-bottom: 20px;
}

.copyright{
    background: #1e2c31;
    text-align: center;
    color: #888;
    padding: 10px;
}


.subscribe {
    margin-top: 1rem;
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.subscribe button{
    background: var(--primary);
    color: #fff;
}



[v-cloak] {
    display: none;
}


.btn-group-xs > .btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}


.address-selected{
    border: 2px solid var(--primary) !important;
}





@media only screen and (min-width: 992px) {


    /* 3. Menubar CSS */

    .level-1-dropdown{
        display: block;
        z-index: 999;
    }

    .level-2-dropdown{
        display: block;
    }

    .level-2:hover .level-2-dropdown, .level-1:hover .level-1-dropdown{
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -o-transition: -o-transform 0.3s,opacity 0.3s;
        -ms-transition: -ms-transform 0.3s,opacity 0.3s;
        -moz-transition: -moz-transform 0.3s,opacity 0.3s;
        -webkit-transition: -webkit-transform 0.3s,opacity 0.3s;
    }
}
















/*Import Fonts from fonts.css file*/
/* @import url('./fonts.css'); */

/* CSS Variables */



.font-poppins {
    font-family: var(--poppins);
  }

  p.para {
    color: var(--text-color);
    font: normal 500 16px/ 25px var(--poppins);
  }

  /* Buttons */

  /* .button{
      padding: .8rem 2.2rem;
      font: normal 500 16px/20px var(--poppins);
      position: relative;
      border: 3px solid transparent;
      border-radius: 4px;
  }

  .button.primary-button{
      background: var(--gradient-color);
      background-clip: padding-box;
      color: whitesmoke;
      transition: background .6s ease;
      box-shadow: var(--box-shadow);
  }

  .button.primary-button:hover{
      background: whitesmoke;
      background-clip: padding-box;
      color: black;
  }

  .button.primary-button::after, .button.secondary-button::after{
      position: absolute;
      top: -2px; left: -2px;
      bottom: -2px;  right: -2px;
      background: var(--gradient-color);
      content: ' ';
      z-index: -1;
      border-radius: 4px;
  }

  .button.secondary-button{
      background: white;
      background-clip: padding-box;
      transition: background .6s ease;
  }

  .button.secondary-button:hover{
      background: var(--gradient-color);
      color: whitesmoke;
      box-shadow: var(--box-shadow);
  } */

  /* End CSS Variable */

  .top-border {
    width: 100%;
    height: 4px;
    background: var(--primary-color);
  }

  /* Start Navigation Area */

  .main-menu {
    background: #fff;
  }

  .top-nav a {
        font-style: normal;
        font-size: 16px;
        line-height: 24px;
        color: #666;
        display: flex;
        align-items: center;
        padding: 8px 12px !important;
    }

    .top-nav li:last-child a{
        margin-right: 0;
    }

  .reg-btn, .user-menu {
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary) !important;
    padding: 3px 20px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 12px;
  }



  /* End Navigation Area */


  /* Banner Area */

  .site-banner {
    background: url("../img/decoration.png") no-repeat;
    background-size: cover;
    width: 100%;
  }

  /* .site-banner-overlay {
    display: flex;
    align-items: center;
    height: 100%;
    background: linear-gradient(
      279.58deg,
      rgba(103, 0, 151, 0.75) -55.92%,
      rgba(80, 192, 255, 0.75) 141.72%
    );
  } */

  .slider-title h1 {
    font-weight: 700;
    font-size: 30px;
    color: #333;
  }

  .slider-title p{
    font-size: 16px;
    color: #888;
  }

.slider-title a{
    padding: 10px 20px;
}

  /* End Banner Area */



  /* Start Service Area */

  .services {
    background-position: center;
    background-size: contain;
  }


  .service-card {
        background: #fff;
        box-shadow: 0 10px 20px rgba(97,105,140,.1);
        border-radius: 0px 0px 10px 10px;
        overflow: hidden;
        margin-bottom: 30px;
        position: relative;
        transition: all 300ms;
    }

  .services p {
    color: #808080;
  }

  .service-card h5{
    font-weight: 700;
    margin-bottom: 7px;
  }


  .services .card:hover {
    transition: 0.7s ease-in-out;
    transform: translateY(-20px);
  }


  /* End Service Area */



  /* Start Join Area */


  .join-area .para {
    font-style: normal;
    padding: 0.4rem 0;
    color: #808080;
    font-weight: 300;
    line-height: 28px;
  }


  /* End Join Area */


  /*Start Team*/

  .team-area {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 47px;
    line-height: 70px;
    color: #333333;
  }

  .team-border {
    background: var(--primary-color2);
    width: 100px;
    height: 5px;
  }

  /*End Team*/


  /* Start Top Media Area */

  .top-media {
    padding: 8rem 5rem;
  }

  .top-media h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 38px;
    color: #000000;
  }

  .top-media .paragraph p {
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    color: #808080;
  }

  /* Start Top Media Area */



  /* Start Mission Area */

  .mission-img img {
    right: 700px;
  }

  .mission-title {
    display: flex;
    align-items: center;
  }

  .mission-title h6 {
    font-weight: normal;
    font-size: 18px;
  }

  .mission-title h6 strong {
    color: var(--primary-color);
  }

  .mission-title > div {
    position: relative;
    padding: 20px 0;
  }

  .mission-title > div::after {
    content: "";
    height: 100%;
    background: #f2f2f2;
    width: 100px;
    position: absolute;
    top: 0;
    z-index: -1;
    left: -20px;
  }

  /* End Mission Area */



  /* Start Team About Us */

  .about-area {
    background: var(--primary-color2);
    background-size: cover;
    height: 400px;
    width: 100%;
    color: #ffffff;
  }

  .about-title {
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 600;
    color: #ffffff;
  }

  .about-area p {
    font-size: 22px;
    font-weight: 300;
    margin: 20px 0;
  }

  /* End Team About Us */



  /* Start Media Center */

  .media-center-card h5 {
    color: #333333;
    font-size: 18px;
  }

  .media-center-card p {
    font-size: 16px;
    line-height: 28px;
    color: #555555;
    margin: 20px 0;
  }

  .media-center-card .card-body {
    margin-top: 30px;
  }

  .sevices-img {
    position: relative;
  }

  .sevices-img>img{
      width: 100%;
  }

  .media-member-card {
    display: flex;
    align-items: center;
    background: #edf1fd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 16px;
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }

  .media-member-card > div {
    margin-left: 20px;
    text-align: left;
  }

  .media-member-card h6 {
    margin-bottom: 0;
  }

  .media-member-card small {
    color: #a7a7a7;
  }
  /* Start Media Center */


  /* Start Course Area */

  .course-area {
    background: #f5f5fe;
  }

  .course-card {
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
  }

  .course-card {
    text-align: center;
  }

  /* End Course Area */


  /* Start Media Center */

  .media-btn button {
    background: var(--primary-color2);
    border-radius: 5px;
    color: #fff;
    padding: 8px 20px;
    font-weight: 500;
    border: none;
    font-size: 14px;
    outline: none;
  }

  .media-btn button:hover {
    color: #fff;
  }

  /* End Media Center */


  /* Start Goal area */

  .goal-number {
    background: linear-gradient(128.68deg, #670097 -74.91%, #50c0ff 171.97%);
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    padding: 10px;
  }

  /* End Goal area */


  /* Start News Area */

  .footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-menu a {
    color: #c0c0c0;
    display: block;
    padding: 5px 0;
    text-decoration: none;
  }

  .asoug-footer-intro p {
    color: #c0c0c0;
  }

  .need-help span {
    color: #50c0ff;
    font-size: 20px;
    margin-left: 10px;
  }

  .news {
    background: linear-gradient(358.07deg, #380053 -83.76%, #50c0ff 263.69%);
    color: white;
  }
  .btn2 {
    height: 45px;
    width: 100px;
    background: #ff2f2f;
    color: #ffffff;
    margin-left: -10px;
    border: 1px solid #ff2f2f;
    border-radius: 0px 5px 5px 0px;
    font-weight: 600;
  }

  .news input {
    height: 45px;
    width: 55%;
    border: 2px solid white;
    outline: none;
    background: #ffffff;
    margin-top: 20px;
    font-weight: 600;
  }

  .news::placeholder {
    color: white;
  }

  .news p {
    margin: 0;
  }

  .fab {
    font-size: 1rem;
    cursor: pointer;
    padding-right: 5px;
  }

  .follow-us a {
    color: #fff;
  }

  /* End News Area */


  /* Start Copyright Area*/

  .copy-right {
    background: #333333;
    color: #c0c0c0;
  }

  .payment-methods img {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    margin-right: 10px;
  }

  /* End Copyright Area*/




.login-selector{
    padding: 5px 20px;
    text-align: center;
    cursor: pointer;
    background: #eee;
    border: 1px solid #eee;
    width: 110px;
}

.lsactive {
    background: var(--primary);
    color: #fff;
}


.login-selector:first-child{
    border-radius: 4px 0 0 4px;
}

.login-selector:last-child{
    border-radius: 0 4px 4px 0;
}






/* admin css -------------------------------------------- */


[v-cloak]
{
    display: none;
}

.ck-editor__editable,
textarea {
    min-height: 150px;
}

.datatable {
    width: 100% !important;
}

table.dataTable tbody td.select-checkbox::before,
table.dataTable tbody td.select-checkbox::after,
table.dataTable tbody th.select-checkbox::before,
table.dataTable tbody th.select-checkbox::after {
    top: 50%;
}

.dataTables_length,
.dataTables_filter,
.dt-buttons {
    margin-bottom: 0.333em;
    margin-top: .2rem;
}

.dataTables_filter {
    margin-right: .2rem;
}

.dt-buttons .btn {
    margin-left: 0.333em;
    border-radius: 0;
}

.table.datatable {
    box-sizing: border-box;
    border-collapse: collapse;
}

table.dataTable thead th {
    border-bottom: 2px solid #c8ced3;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #c8ced3;
}

.select2 {
    max-width: 100%;
    width: 100% !important;
}

.select2-selection__rendered {
    padding-bottom: 5px !important;
}

.has-error .invalid-feedback {
    display: block !important;
}

.btn-info,
.badge-info {
    color: white;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-image: none;
}

.sidebar .nav-item {
    cursor: pointer;
}

.btn-default {
    color: #23282c;
    background-color: #f0f3f5;
    border-color: #f0f3f5;
}

.btn-default.focus,
.btn-default:focus {
    box-shadow: 0 0 0 .2rem rgba(209, 213, 215, .5);
}

.btn-default:hover {
    color: #23282c;
    background-color: #d9e1e6;
    border-color: #d1dbe1;
}

.btn-group-xs > .btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.searchable-title {
    font-weight: bold;
}
.searchable-fields {
    padding-left:5px;
}
.searchable-link {
    padding:0 5px 0 5px;
}
.searchable-link:hover   {
    cursor: pointer;
    background: #eaeaea;
}
.select2-results__option {
    padding-left: 0px;
    padding-right: 0px;
}

.form-group .required::after {
    content: " *";
    color: red;
}

.form-check.is-invalid ~ .invalid-feedback {
    display: block;
}

.c-sidebar-brand .c-sidebar-brand-full:hover {
    color: inherit;
}

.custom-select.form-control-sm {
    padding: 0.25rem 1.5rem;
}


.toasted-container.top-right {
    top: 5% !important;
    right: 1% !important;
}

.c-sidebar-nav-link a{
    font-size: 13px;
}


.c-sidebar-nav-icon {
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-sidebar-nav-dropdown-toggle, .c-sidebar-nav-link {
    padding: .7rem 1rem;
}

.product-tabs{
    background: #fff;
    padding: 0.5rem;
    border-radius: 4px;
}

.card{
    border: none;
}

.upload-button {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed #bbb;
    padding: 10px;
    cursor: pointer;
}

.upload-button i{
    font-size: 2rem;
    color: #ddd
}

.upload-button p{
    color: #888;
}

.product-image-loader {
	width: 100%;
	height: 100%;
	position: relative;
	min-height: 150px;
	max-height: 150px;
}

.product-image-loader>div {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
}

.product-image-loader>div i{
    font-size: 2rem;
}

.product-image{
    position: relative;
}

.product-image-actions{
    position: absolute;
    top: 5px;
    right: 5px;
}



.document-box{
    margin: 20px;
    background: #eee;
    border-radius: 6px;
    text-align: center;
}

.document-box div{
    padding: 15px;
}


.document-box a{
    display: block;
    padding: 5px;
    background: #ddd;
    font-size: 14px;
}

[v-cloak] {
    display: none;
}


.campaign-send .tox-tinymce{
    height: 700px !important;
}


.user-circle{
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #fff;
    border-radius: 20px;
    padding: 2px;
    font-size: 10px;
}

.user-circle-red{
    color: red;
}

.user-circle-green{
    color: green;
}

.chat-active{
    background-color: #fafafa;
}

.chat-history li{
    list-style: none;
}

.chat-message{
    color: #1e1e2d;
    word-break: break-word;
    font-weight: 500;
    word-spacing: 1px;
    padding: 10px 12px;
}

.chatmsg-left .chat-message{
    border-radius: 0 15px 15px 15px;
    background-color: #f8f5ff!important;
}


.chatmsg-right .chat-message{
    border-radius: 15px 0 15px 15px;
    background-color: #f1faff!important;
}

.chat-list, .chat-history{
    height: 300px;
    overflow-y: auto;
}

.chat-history{
    display: flex;
    flex-direction: column-reverse;
}

.last-message img {
	width: 18px;
}

.chat-message.sent-image {
    width: 200px;
}



.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #525f7f;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0 solid rgba(0, 0, 0, 0.15);
    border-radius: 0.3rem;
    box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1), 0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-menu-end:before {
    background: #fff;
    box-shadow: none;
    content: '';
    display: block;
    height: 16px;
    width: 16px;
    right: 25px;
    position: absolute;
    bottom: 100%;
    transform: rotate(-45deg) translateY(1rem);
    z-index: -5;
    border-radius: 0.2rem;
}

.dropdown-menu .dropdown-item {
    padding: 0.6rem;
    font-size: 0.875rem;
}



.services-title h1{
    font-weight: 700;

}


.form-round{
    color: #666;
    border: 1px solid #ddd;
    border-radius: 50px !important;
    padding: 8px 15px;
    height: 55px;
    outline: none;
}

.required::after {
    content: " *";
    color: red;
}


.subscribe input{
    border-radius: 4px !important;
}


.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary);
}


.search-inputs input{
    border-radius: 4px 0 0 4px !important;
    border-right: 0px solid;
}


.seller-logo img {
    height: 90px;
}



.blog-item {
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(97, 105, 140, 0.1);
}

.blog-thumb {
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    transform: scale(1);
    transition: 1s linear;
}

.blog-content {
    padding: 40px 30px;
}

.blog-item:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-content h4 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 18px;
}

.blog-meta span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary)
}




.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}


.fixed-top {
    background: #fff;
    -webkit-box-shadow: 0px 18px 40px -30px rgba(35, 38, 58, 0.21);
    box-shadow: 0px 18px 40px -30px rgba(35, 38, 58, 0.21);
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
}



@-webkit-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}


.bg-primary{
    background: var(--primary) !important;
}

.rating-color{
    color: rgb(245, 165, 35);
    font-size: 12px;
}

span.punit {
    font-size: 12px;
    color: #777;
}


/*************** Contact Area CSS ***************/

.contact-area {
    background: #f2f2f2;
}

.contact-area h4{
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5rem;
    position: relative;
}


.contact-area h4::after{
    content: "";
    display: block;
    border-bottom: 2px solid var(--primary);
    width: 50px;
    margin: 0 auto;
    margin-top: 10px;
}


.contact-area h6{
    color: var(--primary);
    font-weight: 600;
}



.contact-form, .address-content{
    box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}


.contact-form button{
    width: 100%;
    margin-bottom: 10px;
}

.address-content {
    height: 100%;
}

.address-info{
    padding-bottom: 20px;
}

.address-info p{
    display: flex;
    margin-bottom: 5px;
}


.contact-box-social i{
    font-size: 14px !important;
}

.btn-soft-primary {
    background-color: #F3E5F5;
    color: var(--primary);
}

.rating i.hover, .rating i.active, .text-rating {
    color: #ffa707;
}

.rating-sm i {
    font-size: 0.8125rem;
}


.pagination {
	flex-wrap: wrap;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .slider-title h1{
        font-size: 35px;
        padding-top: 30px;
    }
    .slider-title p {
        font-size: 18px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .slider-title h1{
        font-size: 40px;
        padding-top: 0px;
    }
    .slider-title p {
        font-size: 20px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .slider-title h1{
        font-size: 50px;
        padding-top: 0px;
    }
    .slider-title p {
        font-size: 20px;
    }

    .join-area .para {
        font-size: 20px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}
