@font-face {
    font-family: 'Graphik Web';
    src: url(../../webfonts/Graphik-Light-Web.eot);
    src: url(../webfonts/Graphik-Light-Web.eot?#iefix) format("embedded-opentype"), url(../../webfonts/Graphik-Light-Web.woff) format("woff"), url(../../webfonts/Graphik-Light-Web.ttf) format("truetype"), url(../../webfonts/Graphik-Light-Web.svg#Graphik-Light) format("svg");
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Graphik Web';
    src: url(../../webfonts/Graphik-Regular-Web.eot);
    src: url(../../webfonts/Graphik-Regular-Web.eot?#iefix) format("embedded-opentype"), url(../../webfonts/Graphik-Regular-Web.woff) format("woff"), url(../../webfonts/Graphik-Regular-Web.ttf) format("truetype"), url(../../webfonts/Graphik-Regular-Web.svg#Graphik-Regular) format("svg");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-display: block;
}

@font-face {
    font-family: 'Graphik Web';
    src: url(../../webfonts/Graphik-Medium-Web.eot);
    src: url(../webfonts/Graphik-Medium-Web.eot?#iefix) format("embedded-opentype"), url(../../webfonts/Graphik-Medium-Web.woff) format("woff"), url(../../webfonts/Graphik-Medium-Web.ttf) format("truetype"), url(../../webfonts/Graphik-Medium-Web.svg#Graphik-Medium) format("svg");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    font-display: block;
}

@font-face {
    font-family: 'Graphik Web';
    src: url(../../webfonts/Graphik-Semibold-Web.eot);
    src: url(../../webfonts/Graphik-Semibold-Web.eot?#iefix) format("embedded-opentype"), url(../../webfonts/Graphik-Semibold-Web.woff) format("woff"), url(../../webfonts/Graphik-Semibold-Web.ttf) format("truetype"), url(../../webfonts/Graphik-Semibold-Web.svg#Graphik-Semibold) format("svg");
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    font-display: block;
}

*, ::after, ::before {
    box-sizing: border-box;
}

:root {
    --themeColor: #635bff;
    --themeColorRGB: 99, 91, 255;
    --themeBodyColor: #0a2540;
    --themeBackgroundColor: #f6f9fc;
    --themeSecondaryColor: #00d4ff;
    --themeBorderRadius: 8px;
  }

::-webkit-scrollbar {
    background-color:#fff;
    width:16px
}
::-webkit-scrollbar-track {
    background-color:#fff
}
::-webkit-scrollbar-track:hover {
    background-color:#f4f4f4
}
::-webkit-scrollbar-thumb {
    background-color:#babac0;
    border-radius:16px;
    border:5px solid #fff
}
::-webkit-scrollbar-thumb:hover {
    background-color:#a0a0a5;
    border:4px solid #f4f4f4
}
::-webkit-scrollbar-button {
    display:none
}

/* a,
button,
img,
input,
span,
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
} */


body{
    font-family: 'Graphik Web', sans-serif!important;
    margin: 0;
    padding: 0;
    background-color: var(--themeBackgroundColor)!important;
    overflow-x: hidden;
    color: var(--themeBodyColor)!important;
}
.custom-container{
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (max-width: 1366px) {
    .custom-container{
        width: 100%;
        padding-right: 50px;
        padding-left: 50px;
    }
}
@media screen and (max-width: 1024px) {
    .custom-container{
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}
.header-area{
    margin-bottom: 50px;
}
.banner-section{
    position: relative;
    height: 300px;
    background-color: var(--themeBodyColor);
}
.banner-section img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.artist-profile-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -65px;
    z-index: 1;
    position: relative;
}
.artist-profile-image{
    min-width: 125px;
    max-width: 125px;
    min-height: 125px;
    max-height: 125px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.artist-profile-image img{
    max-width: 100px;
    max-height: 100px;
}
.artist-profile-name{
    font-size: 30px;
    font-weight: 600;
    margin: 10px 0 20px 0;
}
.artist-profile-links{
    display: flex;
    align-items: center;
    justify-content: center;
}
.artist-profile-list{
 padding: 0 20px;
 position: relative;
 font-size: 16px;
 opacity: .7;
 text-decoration: none;
 color: var(--themeBodyColor);
}
.artist-profile-list.link{
    opacity: 1;
   }
.artist-profile-list:after{
    position: absolute;
    content: "";
    border-right: 1px solid #ccc;
    height: 100%;
    right: 0;
}
.artist-profile-list:last-child:after {
    display: none;
}
.share-wrap{
    position: absolute;
    right: 20px;
    top: 85px;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: var(--themeBorderRadius);
    text-decoration: none;
    color: var(--themeBodyColor);
}
.share-wrap:hover{
    background-color: #fff;
}
.share-wrap-body{
    display: flex;
    align-items: center;
}
.share-wrap-body SVG{
    width: 18px;
    height: 18px;
    margin: 0 5px 0 0;
}
.body-area{
    padding: 50px 0;   
}
@media screen and (max-width: 1366px) {
    .body-area{
        padding: 20px 0;   
    }
}
.product-wrapper{
    width: 100%;
}
.product-wrapper .product-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
.product-wrapper .product-col{
    flex: 0 0 auto;
    width: 20%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
@media screen and (max-width: 1366px) {
    .product-wrapper .product-col{
        width: 25%;
    }
}
@media screen and (max-width: 1024px) {
    .product-wrapper .product-col{
        width: 33.33333333%;
    }
}
@media screen and (max-width: 767px) {
    .product-wrapper .product-col{
        width: 50%;
    }
}
.product-card{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.product-card:hover .product-image{
    box-shadow: 0 0 30px 0 rgba(0,0,0,.10);
    -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-image{
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: var(--themeBorderRadius);
    overflow: hidden;
}
.product-image img{
    max-width: 100%;
    max-height: 200px;
}
.product-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product-heading{
    font-size: 14px;
    font-weight: 500;
    color: var(--themeBodyColor);
    margin: 10px 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-price{
    font-size: 18px;
    font-weight: 600;
    color: var(--themeColor);
}
.product-pagination-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.product-pagination{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}
.product-item{
    margin: 5px;
}
.product-link{
    color: var(--themeBodyColor);
    text-decoration: none;
    font-size: 18px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .4;
    font-size: 20px;
}
.product-link.active{
    color: var(--themeColor);
    opacity: 1;
    font-weight: 500;
}

.product-details-wrapper{
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: rgba(var(--themeColorRGB), 0.15);
}
@media screen and (max-width: 767px) {
    .product-details-wrapper{
        padding-top: 0px;
        padding-bottom: 0px;
    }
}
.product-details-row{
    display: flex;
    padding-left: 100px;
    flex-wrap: wrap;
    margin-left: -25px;
    margin-right: -25px;
}
@media screen and (max-width: 767px) {
    .product-details-row{
        padding-left: 0;
        margin-left: -15px;
        margin-right: -15px;
    }
}
.product-details-col{
    flex: 0 0 auto;
    width: auto;
    max-width: 50%;
    padding-left: 25px;
    padding-right: 25px;
}
@media screen and (max-width: 767px) {
    .product-details-col{
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}
.product-details-image{
    /* background-color: #fff;
    border-radius: var(--themeBorderRadius); */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.product-details-image img{
    max-width: 100%;
    /*box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);*/
}
.product-details-info .product-title{
    font-size: 30px;
    font-weight: 600;
    color: var(--themeBodyColor);
    margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
    .product-details-info .product-title{
       margin-top: 15px;
    }
}
.product-details-info .product-price{
    font-size: 30px;
    font-weight: 600;
    color: var(--themeColor);
    margin-bottom: 25px;
}
.product-details-article{
    margin-bottom: 30px;
}
.product-details-article:last-child{
    margin-bottom: 0px;
}
.product-details-label{
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    color: var(--themeBodyColor);
    opacity: .5;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.product-details-info .color-group{
    display: flex;
    flex-wrap: wrap;
}
.product-details-info .color-item{
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin: 0 5px 5px 0;
    
}
.product-details-info .color-item.active:before{
    content: "";
    display: block;
    width: 8px;
    height: 16px;
    border: solid #000;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 4px);
    z-index: 9;
}
.product-details-info .color-item.active:after{
    content: "";
    display: block;
    width: 8px;
    height: 16px;
    border: solid #eee;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 11px);
    left: calc(50% - 4px);
    z-index: 9;
}
.product-details-info .color-link{
    width: 40px;
    height: 40px;
    border-radius: var(--themeBorderRadius);
    background-size: cover;
}

.product-details-info .size-group{
    display: flex;
    flex-wrap: wrap;
}
.product-details-info .size-item{
    min-width: 40px;
    min-height: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin: 0 5px 5px 0;
}
.product-details-info .size-link{
    min-width: 40px;
    min-height: 40px;
    border-radius: var(--themeBorderRadius);
    background-size: cover;
    border: 1px solid #eee;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.product-details-info .size-item.active .size-link{
    border-color: var(--themeColor);
}

.add-to-cart {
    color: #fff;
    background-color: var(--themeColor);
    border-color: var(--themeColor);
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    padding: 10px 30px;
    font-size: 20px;
    border-radius: var(--themeBorderRadius);
}
.add-to-cart:hover {
    background-color: var(--themeBodyColor);
}

.similar-product-wrapper{
    width: 100%;
    margin-top: 75px;
    position: relative;
}
.similar-product-heading{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}
.similar-product-wrapper svg{
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: .5;
}
.similar-product-wrapper svg:hover{
    opacity: 1;
}
.similar-product-wrapper .arrow-left{
    position: absolute;
    left: -50px;
    top: 44%;
}
.similar-product-wrapper .arrow-right{
    position: absolute;
    right: -50px;
    top: 44%;
}

.about-artist-wrapper{
    margin-top: 100px;
}
.about-artist-wrapper .card{
    background-color: #fff;
    border-radius: var(--themeBorderRadius);
}
.about-artist-wrapper .card-body{
    padding: 50px;
}
.about-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 40px 0;
}
.about-header .about-logo-wrap{
    display: flex;
    align-items: center;
}
.about-logo-image{
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    border-radius: 50%;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 0 0;
}
.about-logo-image img{
    max-width: 85px;
    max-height: 85px;
}
.about-logo-text{

}
.about-heading{
    font-size: 30px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}
.about-list{
    display: flex;
}
.about-list-item{
    padding-right:20px;
    margin-right: 20px;
    position: relative;
}
.about-list-item:after {
    position: absolute;
    content: "";
    border-right: 1px solid #ccc;
    height: 100%;
    right: 0;
}
.about-list-item:last-child:after {
    display: none;
}
.about-header .about-follower-wrap{
    display: flex;
    align-items: flex-start;
}
.about-follower-wrap-col{
    padding: 0 20px;
    text-align: center;
    position: relative;
}
.about-follower-wrap-col:after {
    position: absolute;
    content: "";
    border-right: 1px solid #ccc;
    height: 100%;
    right: 0;
    top: 0;
}
.about-follower-wrap-col:last-child:after {
    display: none;
}
.about-follower-wrap-col .number{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.about-follower-wrap-col .text{
    font-size: 16px;
}
.about-header .about-btn-wrap{
    display: flex;
    align-items: flex-start;
}

.about-body{
    font-size: 18px;
    line-height: 28px;
}
.btn-fill{
    margin: 0 5px;
    padding: 10px 20px;
    background-color: #f2f2f6;
    border: 2px solid #f2f2f6;
    text-decoration: none;
    color: var(--themeBodyColor);
    border-radius: var(--themeBorderRadius);
    font-size: 18px;
}
.btn-border{
    margin: 0 5px;
    padding: 10px 20px;
    border: 2px solid #ddd;
    text-decoration: none;
    color: var(--themeBodyColor);
    border-radius: var(--themeBorderRadius);
    font-size: 18px;
}
.social-group{
    display: flex;
    margin-top: 40px;
}
.social-group-link svg{
    width: 20px;
    height: 20px;
}
.social-group-link{
    margin-right: 20px;
    color: var(--themeBodyColor);
    text-decoration: none;
}
.social-group-link:hover{
    color: var(--themeColor);
}

.artwork-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}
.artwork-info .artwork-name{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
.artwork-info .artist-name{
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.artwork-info .artist-name .by{
    font-weight: 400;
    opacity: .5;
}
.artwork-info .artwork-description{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    max-width: 500px;
}
.artwork-info .button-group{
    display: flex;
}
.artwork-info .button-group a{
    text-decoration: none;
    color: var(--themeBodyColor);
}
.artwork-info .button-group svg{
    width: 22px;
    height: 22px;
    margin-right: 25px;
}



/* .back-to{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--themeBodyColor);
    margin-bottom: 15px;
}
.back-to svg{
    margin-right: 5px;
}
.back-to:hover{
    color: var(--themeColor);
} */
.pt-0{
    padding-top: 0;
}

.back-list-wrapper{
    display: flex;
    align-items: center;
}
.back-list-wrapper a{
    text-decoration: none;
}
.back-list-wrapper svg{
    display: flex;
    width: 20px;
    height: 20px;
}
.back-list-photo{
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 15px 0 5px;
}
.back-list-photo img{
    max-width: 48px;
    max-height: 48px;
}
.back-list-content .artist-name{
    font-size: 20px;
    font-weight: 600;
}
.back-list-content .artist-design{
    font-size: 16px;
}
/* MODAL */
.campaign-modal{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    display: none;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
}
.campaign-modal-dialog{
    max-width: 600px;
    width: 100%;
    margin: 1.75rem auto;
    position: relative;
    pointer-events: none;
}
.campaign-modal-content{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 12px;
    outline: 0;
}
.campaign-modal-header{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.campaign-modal-title{
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.5;
}
.campaign-modal-body{
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}
.campaign-modal-footer{
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.btn-close{
    padding: 0;
    margin: 0;
    box-sizing: content-box;
    color: #000;
    border: 0;
    background-color: transparent;
}
.btn-close svg{
  width: 24px;
  height: 24px;
}
.social-group{
  display: flex;
  flex-wrap: wrap;
}
.social-group .social-item{
  margin: 0 30px 0 0;
}
/*payment log*/
.month_trace {
    margin-top: 30px;
}
.month_trace h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #505165;
    text-transform: uppercase;
}
.month_trace ul {
    padding: 0;
    list-style: none;
}
.month_trace ul li {
    margin-left: 6px;
    padding-left: 20px;
    position: relative;
    border-left: 2px solid #dcdcdc;
    padding-bottom: 25px;
}
.month_trace ul li:last-child {
    padding-bottom: 0;
    border-color: transparent;
}
.month_trace ul li:before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #635bff;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: -7px;
    top: 1px;
}
.record_date {
    position: relative;
    padding-left: 80px;
}
.record_date .date {
    position: absolute;
    left: 0;
    top: -5px;
    font-weight: 400;
    color: #9394a4;
}
.recordDetails {
    position: relative;
    top: -5px;
}
.recordDetails .top_sec {
    font-weight: 500;
    font-size: 18px;
}
.recordDetails span {
    display: block;
    font-weight: 400;
    font-size: 15px;
    opacity: .7;
}
.recordDetails .bottom_sec {
    font-size: 12px;
    text-transform: uppercase;
}
.recordDetails .attach {
    margin: 8px 0;
    margin-bottom: 0;
}
.recordDetails .attach .img_send {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #eaeaea;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}
.recordDetails .attach .img_send:last-child {
    margin-right: 0;
}
/*payment log*/