/*
    Dashboard css
*/
@media only screen and (min-width: 1200px) {
    .dashboard__sidebar.active{
        width: 7rem;
    }
    .dashboard__sidebar.active .dashboard__sidebar--inner{
        padding: 2rem 1rem 3rem;
    }
    .dashboard__sidebar.active .sidebar__menu--text{
        display: none;
    }
    .dashboard__sidebar.active .sidebar__menu--link{
        padding: 1rem;
    }
    .dashboard__sidebar.active .sidebar__menu--title{
        display: none;
    }
    .dashboard__sidebar.active .sidebar__menu--link.logout .sidebar__menu--text{
        display: none;
    }
    .dashboard__sidebar.active .sidebar__dropdown--menu{
        display: none;
    }
    .dashboard__sidebar.active .sidebar__menu--link__arrow{
        display: none;
    }
    .dashboard__sidebar.active .main__logo--img.mobile{
        display: block;
    }
    .dashboard__sidebar.active .main__logo--img.desktop{
        display: none;
    }
    .page__body--wrapper.active{
        padding-left: 7rem;
    }
    
}

.main__logo--img.mobile{
    display: none;
}

.sidebar__menu--text{
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}
.main__content_wrapper {
    padding-top: 6.8rem;
}
@media only screen and (max-width: 575px) {
    .main__content_wrapper {
        padding-top: 11rem;
    }
}
.dashboard__sidebar{
    background: var(--color-background);
    position: fixed;
    width: 24rem;
    height: 100vh;
    left: 0;
    top: 0;
    border-right: 1px solid var(--color-border-2);
    overflow-y: auto;
    z-index: 99;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}


.dashboard__sidebar::-webkit-scrollbar {
    width: 0.5rem;
    height: 20rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  /* Track */
  .dashboard__sidebar::-webkit-scrollbar-track {
    position: relative;
    right: 0;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  
  /* Handle */
  .dashboard__sidebar::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    width: 0.3rem;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  
  .dashboard__sidebar:hover::-webkit-scrollbar-thumb {
    background: var(--color-border-2);
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }

@media only screen and (min-width: 1366px) {
    .dashboard__sidebar{
        width: 28rem;
    }
}
@media only screen and (max-width: 1199px) {
    .dashboard__sidebar{
        transform: translateX(-100%);
    }
    .dashboard__sidebar.active{
        transform: translateX(0);
    }
}
.page__body--wrapper{
    padding-left: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
@media only screen and (min-width: 1200px) {
    .page__body--wrapper{
        padding-left: 24rem;
    }
}
@media only screen and (min-width: 1366px) {
    .page__body--wrapper{
        padding-left: 28rem;
    }
}
.main__logo{
    text-align: center;
    padding: 1rem 0;
}
.dashboard__sidebar--inner{
    padding: 2rem 1.5rem 3rem;
}
@media only screen and (max-width: 1199px) {
    .dashboard__sidebar--inner{
        padding: 9rem 1.5rem 3rem;
    }
}
@media only screen and (max-width: 575px) {
    .dashboard__sidebar--inner{
        padding: 14rem 1.5rem 3rem;
    }
}
.sidebar__menu--items{
    margin-bottom: 0.5rem;
}
.sidebar__menu--items:last-child{
    margin-bottom: 0;
}


.sidebar__menu--link{
    font-size: 1.5rem;
    color: var(--color-foreground-sub);
    padding: 1.2rem 1.5rem;
    display: block;
    border-radius: 0.5rem;
}
.sidebar__menu--link.active{
    background: rgba(22, 163, 74, 0.05);
    color: var(--color-hover);
    position: relative;
}
.sidebar__menu--link.active::before{
    position: absolute;
    content: "";
    width: 0.3rem;
    height: 100%;
    background: var(--color-hover);
    right: 0;
    top: 0;
    border-radius: 0 0.5rem 0.5rem 0;
}
.sidebar__menu--icon{
    min-width: 2rem ;
    margin-right: 0.6rem;
}
.sidebar__menu--title{
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1.5rem 1.5rem;
    color: var(--color-foreground-2);
    opacity: 0.5;
}
.sidebar__menu--link.logout{
    color: var(--color-hover);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.sidebar__menu--link.logout:hover{
    text-decoration: underline;
}
.sidebar__menu--link.logout .sidebar__menu--text{
    display: block;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.sidebar__menu--items.dropdown__items{
    background: rgba(22, 163, 74, 0.05);
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    position: relative;
}
.sidebar__dropdown--menu{
    padding: 0.8rem 1.5rem 1.5rem 3rem;
}
.sidebar__dropdown--menu__link{
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: var(--color-foreground-sub);
}
.sidebar__dropdown--menu__items{
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.sidebar__dropdown--menu__items::before{
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-foreground-2);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.sidebar__dropdown--menu__items:last-child{
    margin-bottom: 0;
}

.dropdown__link--active{
    color: var(--color-hover);
    position: relative;
}
.sidebar__menu--link__arrow{
    position: absolute;
    right: 1.5rem;
    top: 44%;
    transform: translateY(-50%);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.dropdown__link--active.collapsed .sidebar__menu--link__arrow{
    transform: rotate(180deg);
}

/* Dashboard main content css */
.dashboard__container{
    gap: 3rem;
    padding: 3rem 1.5rem;
}
@media only screen and (min-width: 400px) {
    .dashboard__container{
        padding: 3rem 2rem;
    }
}
@media only screen and (min-width: 1200px) {
    .dashboard__container{
        padding: 3rem 3rem 4rem;
    }
}

@media only screen and (min-width: 1600px) {
    .dashboard__container{
        padding: 3rem 4rem 4rem;
    }
}
@media only screen and (max-width: 991px) {
    .dashboard__container{
        flex-direction: column;
    }
}
.main__content--left{
    width: 100%;
}
@media only screen and (min-width: 992px) {
    .main__content--left{
        width: 62%;
    }
}
.main__content--left__inner {
    position: sticky;
    top: 0;
}
.main__content--right{
    width: 100%;
}
@media only screen and (min-width: 992px) {
    .main__content--right{
        width: 38%;
    }
}
.welcome__section {
    background: var(--color-background);
    padding: 2rem 2rem 3rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border-2);
    margin-bottom: 3rem;
}
@media only screen and (min-width: 576px) {
    .welcome__section {
        padding: 2rem 2rem 2rem 1.5rem;
    }
}
@media only screen and (min-width: 1600px) {
    .welcome__section {
        padding: 1rem 2rem 1rem 1.5rem;
    }
}
.welcome__thumbnail{
    width: 100%;
}
@media only screen and (min-width: 576px) {
    .welcome__thumbnail{
        width: 20rem;
    }
}
@media only screen and (min-width: 1600px) {
    .welcome__thumbnail{
        width: 22rem;
    }
}
@media only screen and (max-width: 575px) {
    .welcome__thumbnail img {
       margin: 0 auto;
    }
}
@media only screen and (max-width: 575px) {
    .welcome__section {
        flex-direction: column-reverse;
        gap: 2rem;
    }
}
.welcome__content{
    width: 100%;
    padding-right: 0;
}
@media only screen and (min-width: 576px) {
    .welcome__content{
        width: calc(100% - 20rem);
        padding-right: 2.5rem;
    }
}
@media only screen and (min-width: 1600px) {
    .welcome__content{
        width: calc(100% - 22rem);
        padding-right: 7rem;
    }
}
@media only screen and (max-width: 575px) {
    .welcome__content {
        text-align: center;
    }
}
.welcome__content--title{
    margin-bottom: 1.5rem;
}
.welcome__content--desc{
    font-size: 1.5rem;
    line-height: 2.6rem;
    margin-bottom: 2rem;
    color: var(--color-foreground-sub);
}
@media only screen and (min-width: 480px) {
    .welcome__content--desc{
        margin-bottom: 2.5rem;
    }
}

/* currency section css */
.currency__card{
    background: var(--color-background);
    padding: 1.2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border-2);
}
@media only screen and (min-width: 1366px) {
    .currency__card{
        padding: 1.2rem 1.5rem;
    }
}
.currency__card--footer{
    display: flex;
    justify-content: space-between;
}
.currency__card--title{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    color: var(--color-foreground-sub-2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 1366px) {
    .currency__card--title {
        font-size: 1.6rem;
    }
}
@media only screen and (min-width: 1700px) {
    .currency__card--title {
        font-size: 1.7rem
    }
}
.currency__card--title span{
    width: 2rem;
    height: 2rem;
    background: var(--color-background-3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.currency__card--amount{
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 1366px) {
    .currency__card--amount{
        font-size: 2rem;
        line-height: 2.8rem;
    }
}
@media only screen and (min-width: 1700px) {
    .currency__card--amount {
        font-size: 2.2rem;
    }
}
.currency__weekly{
    font-size: 1.3rem;
    line-height: 1.8rem;
}

.currency__increase {
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: var(--color-hover);
}
.currency__withdrawal{
    background: var(--color-background-3);
    font-size: 1.2rem;
    height: 1.8rem;
    line-height: 1.8rem;
    padding: 0 1rem;
    color: #9E38FF;
}
.currency__withdrawal:hover{
    background: var(--color-hover);
    color: var(--color-white);
    border-radius: 0.3rem;
}

.currency__decrease {
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: var(--color-hover);
}


/* Sales Report section css */
.sales__report--section{
    background: var(--color-background);
    padding: 2.5rem 0 3rem;
    border: 1px solid var(--color-border-2);
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}
.sales__report--heading{
    padding: 0 2.5rem 0 2rem;
}
.sales__report--heading__title{
    font-size: 1.7rem;
    line-height: 2.5rem;
    font-weight: 600;
}
@media only screen and (min-width: 576px) {
    .sales__report--heading__title{
        font-size: 1.8rem;
    }
}
.sales__report--short-by{
    width: 9rem;
}
.sales__report--short-by__select{
    width: 100%;
    height: 2.8rem;
    font-size: 1.3rem;
    line-height: 2.8rem;
    background: var(--color-hover);
    color: var(--color-white);
    border: 0;
    padding: 0 1.2rem;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 0.3rem;
}
.sales__report--short-by.select::before{
    border-bottom: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
}
.sales__report--table table{
    width: 100%;
}
.sales__report--table table thead tr th{
    padding: 0 2rem 3rem 2rem;
}
.sales__report--table table thead tr th:last-child{
    padding: 0 3rem 3rem 2rem;
}
.sales__report--table table tbody tr:nth-child(1n) td{
    background: var(--color-background-4);
}
.sales__report--table table tbody tr:nth-child(2n) td{
    background: var(--color-background);
    padding: 2.2rem 2rem;
}
.sales__report--table table tbody tr td{
    padding: 1rem 2rem;
}
.sales__report--table table tbody tr td:nth-child(1){
    min-width: 22rem;
}
.sales__report--table table tbody tr td:nth-child(2){
    min-width: 16.5rem;
}
.sales__report--table table tbody tr td:nth-child(3){
    min-width: 13rem;
}
.sales__report--table table tbody tr td:last-child{
    padding: 1rem 3rem 1rem 2rem;
}
.sales__report--author__name{
    font-size: 1.4rem;
    line-height: 1.9rem;
    font-weight: 400;
    margin-left: 1.5rem;
    color: var(--color-foreground-2);
}
@media only screen and (min-width: 1600px) {
    .sales__report--author__name{
        font-size: 1.3rem;
    }
}
.sales__report--body__text{
    font-size: 1.3rem;
    line-height: 1.9rem;
    color: var(--color-foreground-2);
}
@media only screen and (min-width: 1600px) {
    .sales__report--body__text{
        font-size: 1.4rem;
    }
}
.sales__report--status{
    width: 10rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    font-size: 1.4rem;
    border-radius: 2rem;
    cursor: pointer;
}
@media only screen and (min-width: 1600px) {
    .sales__report--status{
        width: 11rem;
    }
}
.sales__report--status.paid{
    background: rgba(22, 163, 74, 0.08);
    color: var(--color-hover);
}
.sales__report--status.pending{
    background: rgba(242, 153, 74, 0.08);
    color: #F2994A;
}
.sales__report--status.paid2{
    background: rgba(149, 59, 191, 0.08);
    color: #953BBF;
}
.sales__report--status.paid3{
    background: rgba(29, 221, 140, 0.08);
    color: #1DDD8C;
}
.sales__report--status.pending2{
    background: rgba(175, 0, 255, 0.08);
    color: #AF00FF;
}


/* Dashboard chart css */
.dashboard__chart--box{
    background: var(--color-background);
    padding: 2rem 3rem 1.5rem 1.5rem;
    border: 1px solid var(--color-border-2);
    border-radius: 0.5rem;
}
.dashboard__chart--title{
    font-size: 1.7rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 576px) {
    .dashboard__chart--title{
        font-size: 1.8rem;
    }
}
.dashboard__chart--box__inner{
    padding-left: 3rem;
}

.sold-out__box--header{
    margin-bottom: 2.5rem;
}
.sold-out__box{
    background: var(--color-background);
    padding: 1.5rem;
    border: 1px solid var(--color-border-2);
    border-radius: 0.5rem;
    width: 50%;
}
@media only screen and (max-width: 1599px) {
    .sold-out__box{
       width: 100%;
    }
}
.sold-out__progress-bar__text{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.sold-out__progress-bar__text h5{
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: var(--color-foreground-sub-2);
    margin-bottom: 0.5rem;
}
@media only screen and (min-width: 576px) {
    .sold-out__progress-bar__text h5{
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
}
.sold-out__progress-bar__text span{
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: var(--color-foreground-2);
    font-weight: 700;
}
@media only screen and (min-width: 576px) {
    .sold-out__progress-bar__text span{
        font-size: 3.7rem;
        line-height: 3.5rem;
    }
}

.dashboard__map iframe{
    width: 100%;
    height: 20rem;
}
.dashboard__sold-out__by-region{
    gap: 2.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1599px) {
    .dashboard__sold-out__by-region{
       flex-direction: column;
    }
}
@media only screen and (max-width: 575px) {
    .dashboard__sold-out__by-region{
       flex-direction: column-reverse;
    }
}
.sales__region--box{
    background: var(--color-background);
    padding: 1.5rem;
    border: 1px solid var(--color-border-2);
    border-radius: 0.5rem;
    width: 50%;
}
@media only screen and (max-width: 1599px) {
    .sales__region--box{
       width: 100%;
    }
}
.sold-out__box--title{
    font-size: 1.7rem;
    line-height: 2.5rem;
}
@media only screen and (min-width: 576px) {
    .sold-out__box--title{
        font-size: 1.8rem;
    }
}
.sold-out__progress-bar{
    gap: 2rem;
}

.sold-out__user--btn{
    padding: 0;
    border: 0;
    background: inherit;
}
.sold-out__user--dropdown{
    right: 0;
    transform: translate(-84px, 23.4943px) !important;
    border: 1px solid var(--color-border-2);
    background: var(--color-background);
    padding: 1rem;
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}
.sold-out__user--dropdown li a{
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: var(--color-foreground-sub-2);
}
.sold-out__user--dropdown li a:hover{
    color: var(--color-hover);
}
.sold-out__user--dropdown li{
    margin-bottom: 0.7rem;
}
.sold-out__user--dropdown li:last-child{
    margin-bottom: 0;
}
.sold-out__progress-bar__field img{
    max-width: 11.5rem;
}
.sold-out__progress-bar__info--text{
    font-size: 1.2rem;
   line-height: 2rem;
   color: var(--color-foreground-sub-2);
}
.sold-out__progress-bar__info--list {
    min-width: 5.5rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0.8rem;
}
.sold-out__progress-bar__info--list:last-child{
    margin-bottom: 0;
}
.sold-out__progress-bar__info--list::before{
    position: absolute;
    content: "";
    width: 1.6rem;
    height: 1rem;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.sold-out__progress-bar__info--list.color1::before{
    background: #F2994A;
}
.sold-out__progress-bar__info--list.color2::before{
    background: #9B51E0;
}
.sold-out__progress-bar__info--list.color3::before{
    background: #16BFD6;
}
.sold-out__progress-bar__info--list.color4::before{
    background: #1DDD8C;
}


/* recent activity css */
.recent__activity--box{
    background: var(--color-background);
    padding: 1.5rem 1.5rem 2rem;
    border: 1px solid var(--color-border-2);
    border-radius: 0.5rem;
}
.recent__activity--title{
    font-size: 1.7rem;
    line-height: 2.5rem;
}
@media only screen and (min-width: 576px) {
    .recent__activity--title{
        font-size: 1.8rem;
    }
}
.recent__activity--select{
    font-size: 1.4rem;
    line-height: 1.8rem;
    padding: 0;
    border: 0;
    color: var(--color-foreground-sub-2);
    width: 8.5rem;
    cursor: pointer;
    background: var(--color-background);
}
.recent__activity--message {
    padding-left: 1.5rem;
}
.recent__activity--message__desc{
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: var(--color-foreground-2);
    margin-bottom: 0;
}
.recent__activity--message__desc2{
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-top: 0.5rem;
    color: var(--color-foreground-sub-2);
}
.recent__activity--message__time{
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: var(--color-foreground-sub-2);
}
.recent__activity--message__list{
    padding-left: 3rem;
    padding-bottom: 1.5rem;
    position: relative;
    gap: 2rem;
    border-left: 1px dashed rgba(22, 163, 74, 0.5);
}
.recent__activity--message__content {
    width: 68%;
}
@media only screen and (max-width: 575px) {
    .recent__activity--message__content{
        width: 80%;
    }
}
.recent__activity--message__list.one .recent__activity--message__desc span{
    color: var(--color-hover);
}
.recent__activity--message__list.two .recent__activity--message__desc span{
    color: #845ADF;
}
.recent__activity--message__list.three .recent__activity--message__desc span{
    color: #49B6F5;
}
.recent__activity--message__list.four .recent__activity--message__desc span{
    color: #E791BC;
}
.recent__activity--message__list.one{
    border-left: 1px dashed rgba(22, 163, 74, 0.5);
}
.recent__activity--message__list.two{
    border-left: 1px dashed rgba(132, 90, 223, 0.5);
}
.recent__activity--message__list.three{
    border-left: 1px dashed rgba(231, 145, 188, 0.5);
}
.recent__activity--message__list:last-child{
    border-left: none;
    padding-bottom: 0;
}
.recent__activity--message__list::before{
    position: absolute;
    content: "";
    width: 2rem;
    height: 2rem;
    left: -1rem;
    background: #E8F6ED;
    z-index: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.recent__activity--message__list.one::before{
    background: #E8F6ED;
}
.recent__activity--message__list.two::before{
    background: #F3EFFC;
}
.recent__activity--message__list.three::before{
    background: #EDF8FE;
}
.recent__activity--message__list.four::before{
    background: #FDF4F8;
}

.recent__activity--message__list::after{
    position: absolute;
    content: "";
    width: 1rem;
    height: 1rem;
    left: -0.5rem;
    top: 0.5rem;
    background: var(--color-hover);
    z-index: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.recent__activity--message__list.one::after{
    background: var(--color-hover);
}
.recent__activity--message__list.two::after{
    background: #845ADF;
}
.recent__activity--message__list.three::after{
    background: #49B6F5;
}
.recent__activity--message__list.four::after{
    background: #E791BC;
}





/* Dashboard profile css */
.dashboard__profile--wrapper{
    background: var(--color-background);
    padding: 2rem;
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}
.profile__sticky--thumbnail{
    border: 1px solid var(--color-border-2);
    border-radius: 0.7rem;
}
.profile__heading--title{
    font-size: 2.4rem;
    line-height: 2.8rem;
}
.profile__heading--desc{
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--color-foreground-sub);
    margin-top: 1.5rem;
}
.profile__main--content{
    padding-left: 3rem;
    gap: 3rem;
    flex-wrap: wrap;
}
@media only screen and (max-width: 1599px) {
    .profile__main--content{
        padding-left: 0;
        justify-content: center !important;
    }
}
.profile__author{
    gap: 1rem;
}
@media only screen and (min-width: 480px) {
    .profile__author{
        gap: 2rem;
    }
}
.profile__author--thumbnail{
    padding: 1.5rem;
    background: var(--color-background);
    border: 1px solid var(--color-border-2);
    margin-top: -2rem;
    border-radius: 0.5rem;
}
@media only screen and (min-width: 576px) {
    .profile__author--thumbnail{
        margin-top: -5rem;
    }
}
@media only screen and (min-width: 1366px) {
    .profile__author--thumbnail{
        margin-top: -11.5rem;
    }
}
@media only screen and (max-width: 991px) {
    .profile__author--thumbnail{
        padding: 1rem;
        width: 22rem;
    }
}
@media only screen and (max-width: 575px) {
    .profile__author--thumbnail{
        width: 15rem;
    }
}
@media only screen and (max-width: 399px) {
    .profile__author--thumbnail{
        width: 10rem;
    }
}
.profile__author--title{
    font-size: 1.8rem;
    line-height: 2.4rem;
}
@media only screen and (min-width: 576px) {
    .profile__author--title{
        font-size: 2.2rem;
        line-height: 2.6rem;
    }
}
.profile__author--subtitle{
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--color-foreground-sub);
    margin-top: 1rem;
}
@media only screen and (min-width: 576px) {
    .profile__author--subtitle{
        font-size: 1.6rem;
    }
}
.profile__info{
    gap: 3rem;
}
@media only screen and (min-width: 480px) {
    .profile__info{
        gap: 4.5rem;
    }
}
.profile__info--title{
    font-size: 1.6rem;
    line-height: 1.8em;
    color: var(--color-foreground-sub);
    font-weight: 400;
}
.profile__info__text{
    margin-top: 0.8rem;
}
.profile__info--list{
    margin-bottom: 1.5rem;
}
.profile__info--list:last-child{
    margin-bottom: 0;
}
.profile__counterup{
    padding: 2rem 3rem;
    background: var(--color-background-5);
    border-radius: 0.5rem;
}

.profile__counterup--number{
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 700;
}
.profile__counterup--text{
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: var(--color-foreground-sub);
    margin-left: 0.5rem;
}
.profile__counterup--items{
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
}
.profile__counterup--items::before{
    position: absolute;
    content: "";
    width: 0.1rem;
    height: 2.5rem;
    right: 0;
    background: var(--color-border);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.profile__counterup--items:last-child{
    margin-right: 0;
    padding-right: 0;
}
.profile__counterup--items:last-child::before{
    display: none;
}

.profile__about--content{
    padding: 3rem 0 1rem;
}
@media only screen and (min-width: 768px) {
    .profile__about--content{
        padding: 4rem 0 2rem;
    }
}
@media only screen and (min-width: 992px) {
    .profile__about--content{
        padding: 6rem 0 2rem;
    }
}
.profile__about--content__title{
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
    .profile__about--content__title{
        font-size: 2.2rem;
        line-height: 2.6rem;
        margin-bottom: 2rem;
    }
}
.profile__about--content__desc{
    font-size: 1.5rem;
    line-height: 2.6rem;
    color: var(--color-foreground-sub);
    max-width: 100%;
    margin: 0 auto 2.5rem;
}
@media only screen and (min-width: 768px) {
    .profile__about--content__desc{
        max-width: 80%;
    }
}
@media only screen and (min-width: 1600px) {
    .profile__about--content__desc{
        max-width: 58%;
    }
}
.social__share--title{
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
    .social__share--title{
        font-size: 2.2rem;
        line-height: 2.6rem;
        margin-bottom: 2rem;
    }
}
.social__share--wrapper{
    gap: 1.5rem;
}
@media only screen and (min-width: 480px) {
    .social__share--wrapper{
        gap: 2rem;
    }
}
.social__share--icon{
    width: 3.8rem;
    height: 3.8rem;
    background: var(--color-background-3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.social__share--icon:hover{
    color: var(--color-white);
    background: var(--color-hover);
}

.profile__author--instagram__icon{
    width: 3.2rem;
    height: 3.2rem;
    background: var(--color-hover);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    border-radius: 50%;
}
.profile__author--instagram__icon:hover{
    color: var(--color-white);
}

.profile__edit--btn{
    padding: 0.7rem 1.2rem;
    background: var(--color-hover);
    color: var(--color-white);
    font-size: 1.4rem;
    line-height: 1.8rem;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    gap: 0.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
}
.profile__edit--btn:hover{
    background: var(--color-background-2);
    color: var(--color-white);
}

@media only screen and (max-width: 767px) {
    .profile__sticky--thumbnail img{
        height: 20rem;
        object-fit: cover;
    }
}
@media only screen and (max-width: 575px) {
    .profile__sticky--thumbnail img{
        height: 15rem;
        object-fit: cover;
    }
}



/* Dashboard setting css */
.setting__page--inner{
    gap: 3rem;
}
@media only screen and (max-width: 991px) {
    .setting__page--inner{
       flex-direction: column;
    }
}
.setting__my--profile{
    background: var(--color-background);
    border: 1px solid var(--color-border-2);
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}
.setting__my--profile{
    background: var(--color-background);
    border: 1px solid var(--color-border-2);
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    position: sticky;
    top: 0;
}
.setting__profile.edit-profile{
    background: var(--color-background);
    border: 1px solid var(--color-border-2);
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    width: 100%
}
@media only screen and (min-width: 992px) {
    .setting__profile.edit-profile{
        width: 60%
    }
}
.setting__profile.my-profile{
    width: 100%;
}
@media only screen and (min-width: 992px) {
    .setting__profile.my-profile{
        width: 40%;
    }
}
.setting__profile--title{
    font-size: 1.8rem;
    line-height: 2.2rem;
    display: block;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--color-border-2);
}

.setting__profile--inner{
    padding: 3rem 2.5rem;
}
.setting__profile--author{
    gap: 1.5rem;
    padding: 2rem 2.5rem 0;
}
.setting__profile--author__name{
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin-bottom: 1rem;
}
.setting__profile--author__btn{
    gap: 1.2rem;
}
.setting__profile--author__btn button{
    padding: 0;
    border: 0;
    background: inherit;
    font-size: 1.4rem;
    line-height: 1.6rem;
}
.setting__profile--author__btn button.delete{
    color: var(--color-foreground-sub);
}
.setting__profile--author__btn button.update{
    color: var(--color-hover);
}
.edit__profile--default__btn{
    display: inline-block;
    font-size: 1.5rem;
    line-height: 4.2rem;
    height: 4.2rem;
    padding: 0 1.5rem;
    letter-spacing: 0.2px;
    border-radius: 1rem;
    background: rgba(22, 163, 74, 0.06);
    color: var(--color-hover);
    border: 0;
    font-weight: 700;
}
@media only screen and (min-width: 576px) {
    .edit__profile--default__btn{
        line-height: 4.5rem;
        height: 4.5rem;
        padding: 0 2rem;
    }
}
@media only screen and (min-width: 768px) {
    .edit__profile--default__btn{
        line-height: 4.8rem;
        height: 4.8rem;
        padding: 0 2rem;
    }
}
@media only screen and (min-width: 992px) {
    .edit__profile--default__btn{
        line-height: 5rem;
        height: 5rem;
        padding: 0 2.2rem;
        font-size: 1.6rem;
    }
}
@media only screen and (min-width: 1200px) {
    .edit__profile--default__btn{
        line-height: 5.2rem;
        height: 5.2rem;
        padding: 0 2.5rem;
    }
}
.edit__profile--default__btn:hover{
    background: var(--color-hover);
    color: var(--color-white);
}
.edit__profile--button{
    gap: 2rem;
    flex-wrap: wrap;
}





/* 
    12. preloader css 
*/
#preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 999;
    display: flex;
    height: 100vh;
    width: 100%;
  }
  
  #preloader:before,
  #preloader:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    transition: all 0.3s ease 0s;
  }
  
  .preloaded:before,
  .preloaded:after {
    animation: preloadedDone 300ms ease-in-out 500ms forwards;
  }
  
  #preloader:after {
    left: auto;
    right: 0;
  }
  
  #preloader .loader--border {
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease 0s;
  }
  
  .loader--border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    transform: translateY(-50%);
    background-color: #fff;
    animation: borderLine 1000ms ease-in-out 0s forwards;
  }
  
  .loader--border:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #999999;
    transform: translateY(-100%);
    animation: borderRound 1200ms linear 0s infinite;
    animation-delay: 2000ms;
  }
  
  .preloaded .loader--border {
    opacity: 0;
    height: 100% !important;
  }
  
  .preloaded .loader--border:after {
    opacity: 0;
  }
  @keyframes borderLine {
    0% {
      height: 0%;
    }
    100% {
      height: 100%;
    }
  }
  @keyframes borderRound {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(200%);
    }
  }
  @keyframes preloadedDone {
    0% {
      width: 50%;
    }
    100% {
      width: 0%;
    }
  }