.cursordecoration:hover {
    text-decoration: underline !important;
    cursor: pointer !important;
    color: blue;
}

.textfontsize {
    font-size: 30px;
}

.textfontsize span {
    color: gray;
    font-size: 20px;
}

.width100 {
    width: 100% !important;
}

.justify-content-evenly {
    -webkit-box-pack: evenly !important;
    -ms-flex-pack: evenly !important;
    justify-content: space-evenly !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 파이어폭스에서의 초기화 방법 */
input[type=number] {
    -moz-appearance: textfield;
}

.customBtn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.customBtn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40
}

.customBtn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
}

.customBtn-outline-dark:not(:disabled):not(.disabled).active, .customBtn-outline-dark:not(:disabled):not(.disabled):active, .show>.customBtn-outline-dark.dropdown-toggle {
    box-shadow: 0 0 0 0.2rem rgb(52 58 64 / 50%);
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.maxwidth50 {
    max-width: 50%;
}

.breakword {
    word-break: break-word;
}

/* 모달 계약서 스크롤 바 */

#contractScroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e8e8e8;
}

#contractScroll::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

#contractScroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #019DEA;
}

/* 스크롤바 끝 */


.btn-primary:hover {
    background-color: #0069d9 !important;
}

.btn-secondary:hover {
    background-color: #5a6268 !important;
}

.btn-success:hover {
    background-color: #218838 !important;
}

.btn-danger:hover {
    background-color: #c82333 !important;
}

.btn-warning:hover {
    background-color: #e0a800 !important;
}

.btn-info:hover {
    background-color: #138496 !important;
}

.btn-light:hover {
    background-color: #e2e6ea !important;
}

.btn-dark:hover {
    background-color: #343a40 !important;
}

.btn-link:hover {
    background-color: transparent !important;
}

.curPointer {
    cursor: pointer;
}


/* profile.php start */
.profileScroll thead {
    display: block;
    width: 100%;
}

.profileScroll thead tr {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.profileScroll tbody {
    display: block;
    max-height: 57rem;
    overflow-y: scroll;
}

.profileScroll tbody tr {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.profileScroll tbody::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e8e8e8;
}

.profileScroll tbody::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.profileScroll tbody::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #019DEA;
}

/* profile.php end */

/* edit profile.php start */
.editInput {
    position: relative;
    margin-bottom: 25px;
}

.editInput label {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 16px;
    color: #000;
    cursor: none;
    transition: all 0.5s ease-in-out;
}

.editInput input {
    border: 0;
    border-bottom: 1px solid #555;
    background: transparent;
    width: 100%;
    padding: 8px 0 5px 0;
    font-size: 16px;
    color: #000;
}

.editInput input:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid red;
}

.editInput input:focus~label,
.editInput input:valid~label {
    top: -12px;
    font-size: 12px;
}

.editIntro {
    position: relative;
    margin-bottom: 25px;
}

.editIntro label {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 16px;
    color: #000;
    cursor: none;
    transition: all 0.5s ease-in-out;
}

.editIntro textarea {
    border: 0;
    border-bottom: 1px solid #555;
    background: transparent;
    width: 100%;
    padding: 8px 0 5px 0;
    font-size: 16px;
    color: #000;
}

.editIntro textarea:focus {
    outline: none;
    border-bottom: 1px solid red;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.editIntro textarea:valid {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.editIntro textarea:focus~label,
.editIntro textarea:valid~label {
    top: -12px;
    font-size: 12px;
}

/* edit profile.php end */


/* dashboard.php start */
.dashboardScroll thead {
    display: block;
    width: 100%;
}

.dashboardScroll thead tr {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.dashboardScroll tbody {
    display: block;
    max-height: 10rem;
    overflow-y: scroll;
}

.dashboardScroll tbody tr {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.dashboardScroll tbody::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e8e8e8;
}

.dashboardScroll tbody::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.dashboardScroll tbody::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #019DEA;
}

@media screen and (max-width:450px) {
    .resflexColumnMax350 {
        flex-direction: column !important;
    }
}

@media screen and (max-width:575px) {
    .resflexColumnreverseMax575 {
        flex-direction: column-reverse !important;
    }

    .resflexColumnMax {
        flex-direction: column !important;
    }

    .res735423 {
        height: 423px !important;
    }
}

/* dashboard.php end */

@media screen and (max-width:990px) {
    .maxwidth50 {
        max-width: 100%;
    }

    .rescolumnReverse {
        flex-direction: column-reverse;
    }

    .resflexWrap {
        flex-wrap: wrap;
    }

    .restitlePad {
        font-size: 2em !important;
    }

    .resflexColumn {
        flex-direction: column !important;
    }

    .resflexEnd {
        justify-content: end !important;
    }
}

.restitlePad {
    font-size: 5em;
}


/* explore 페이지 이미지 최대 크기 설정. */
.creatorImg img {
    max-height: 450px;
}

.creatorIcon .img-fluid {
    max-width: 65px;
    max-height: 65px;
}
/* explore 페이지 끝. */

/* collection 최대 이미지 크기 설정 */
.authoreproicon img {
    max-width: 130px;
    max-height: 130px;
}

.authoreproicon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* collection 페이지 끝. */

/* item 페이지 시작  */

@media screen and (max-width: 991px) {
    .d-991-none {
        display: none;
    }
}

.max150 {
    max-width: 150px !important;
    height: 150px !important;
}

.max200 {
    max-height: 200px !important;
}

.paddingDesc {
    padding: 36px 10px 28px !important;
}

.imgprofile {
    height: 70px;
}

.topSellers li .seller:nth-child(3n) {
    border-bottom: 0.5px solid transparent;
}

.resfont4820 {
    font-size: 48px;
}

.font48 {
    font-size: 48px;
}

.font40 {
    font-size: 40px;
}

.font30 {
    font-size: 30px;
}

.font25 {
    font-size: 25px;
}

.font24 {
    font-size: 24px;
}

.font22 {
    font-size: 22px;
}

.font21 {
    font-size: 21px;
}

.font20 {
    font-size: 20px;
}

.font18 {
    font-size: 18px;
}

.font16 {
    font-size: 16px;
}

.font14 {
    font-size: 14px;
}

.font13 {
    font-size: 13px;
}

.font12 {
    font-size: 12px;
}

.font10 {
    font-size: 10px;
}

.objectcover {
    object-fit: cover;
}

.objectfill {
    object-fit: fill;
}

@media screen and (max-width: 300px) {
    .resmax212100 {
        width: 100px !important;
        height: 100px !important;
    }

    .resmx3px {
        margin: 0 3px;
    }

    .resWidth400 {
        width: 230px !important;
        height: 230px !important;
    }
}

@media (min-width:300px) and (max-width:370px) {
    .resmax212100 {
        width: 120px !important;
        height: 120px !important;
    }

    .resmx3px {
        margin: 0 3px;
    }

    .resWidth400 {
        width: 260px !important;
        height: 260px !important;
    }
}

@media (min-width:370px) and (max-width:767px) {
    .resmax212100 {
        width: 140px !important;
        height: 140px !important;
    }

    .resmx3px {
        margin: 0 3px;
    }

    .resWidth400 {
        width: 280px !important;
        height: 280px !important;
    }
}

@media (min-width:767px) and (max-width:1399px) {
    .resmax212100 {
        width: 140px !important;
        height: 140px !important;
    }

    .resWidth400 {
        width: 350px !important;
        height: 350px !important;
    }
}

@media screen and (max-width: 767px) {
    nav.navbar .navbar-nav li.dropdown {
        margin: 0 0 28px !important;
    }
    .artistWidth20 {
        flex: 0 0 auto;
        width: 50% !important;
    }

    .iconShow {
        display: block !important;
    }

    .iconHidden {
        display: none !important;
    }

    .objectcover {
        object-fit: contain;
    }
    
    .res735260 {
        height: 260px !important;
    }

    .resfont2018 {
        font-size: 18px !important;
    }

    .flexControl {
        flex: 0 0 25% !important;
    }

    .mt5 {
        margin-top: 5px !important;
    }

    .resmheight {
        height: 30rem !important;
    }
}

@media screen and (max-width: 1399px) {
    nav.navbar .navbar-nav li.nav-item2 {
        margin: 0 50px 23px 0 !important;
    }

    .resfont4820 {
        font-size: 20px;
    }

    .resfont12 {
        font-size: 12px;
    }
}

nav.navbar .navbar-nav li.dropdown {
    margin: 0 30px 0 0;
}

nav.navbar .navbar-nav li.customDropdown{
    width: 30%;
}

@media (min-width:768px) and (max-width:1199px) {
    nav.navbar .navbar-nav li.customDropdown{
        margin: 0 1% 50px !important;
        display: inline-block !important;
        vertical-align: top !important;
        width: 31% !important;
    }

    .resmheight {
        height: 22rem !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    nav.navbar .navbar-nav li.customDropdown{
        width: 30% !important;
    }
}

@media (min-width:768px) and (max-width:1399px) {
    .artistWidth20 {
        flex: 0 0 auto;
        width: 33.3% !important;
    }
}

.collections-border {
    border-color: #C4C4C4 !important;
}

.rounded-border05 {
    border-bottom-right-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}
.rounded-border1 {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}
.rounded-border2 {
    border-bottom-right-radius: 2rem !important;
    border-bottom-left-radius: 2rem !important;
}
.rounded-border3 {
    border-bottom-right-radius: 3rem !important;
    border-bottom-left-radius: 3rem !important;
}

.rounded-border4 {
    border-bottom-right-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
}
.rounded-border5 {
    border-bottom-right-radius: 5rem !important;
    border-bottom-left-radius: 5rem !important;
}

details {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: .5em .5em 0;
}

summary {
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
}

details[open] {
    padding: .5em;
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}

details > div {
    margin: 1rem !important;
    height: 90px;
}

details > p {
    /* Foreground, Background */
    overflow-y: auto;
    height: 120px;
    margin: 1rem !important;
    scrollbar-color: #999 #333;
}
details > p ::-webkit-scrollbar {
    width: 10px; /* Mostly for vertical scrollbars */
    height: 10px; /* Mostly for horizontal scrollbars */
}
details > p ::-webkit-scrollbar-thumb { /* Foreground */
    background: #999;
}
details > p ::-webkit-scrollbar-track { /* Background */
    background: #333;
}

.figmagray {
    color: #8D8A8A;
}

.cImgStyle {
    height: 372px;
}

.profileImg {
    width: 130px;
    height: 130px;
}

.artistWidth25 {
    flex: 0 0 auto;
    width: 25%;
}

.margin0 {
    margin: 0 !important;
}

.togglePannelBG {
    color: rgb(4, 17, 29);
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.togglePannelBtn {
    width: 100%;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    border-top: 1px solid rgb(229, 232, 235);
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    user-select: none;
    background-color: rgb(255, 255, 255);
}

.togglePannelContent {
    border-top: 1px solid rgb(229, 232, 235);
    color: rgb(53, 56, 64);
    background-color: rgb(251, 253, 255);
}

.rounded-bottom-0 {
    border-bottom-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
}

.mtdeopt5 {
    margin-top: -5px;
}

.iconShow {
    display: none;
}

.res735260 {
    height: 735px;
}

.maxwidth168 {
    max-width: 169px;
}

.resfont2018 {
    font-size: 20px;
}

.resmax212100 {
    width: 212px;
    height: 212px;
}

.resWidth400 {
    width: 500px;
    height: 500px;
}

.darkScroll::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
}

.darkScroll::-webkit-scrollbar-track {
    background: rgba(62, 82, 108, 0.3);
    border-radius: 10px;
    border: 2px solid #fff;
}

.darkScroll::-webkit-scrollbar-thumb {
    background: rgb(57, 57, 57);
    border-radius: 10px;
    border: 2px solid rgb(57, 57, 57);
}

.darkScroll::-webkit-scrollbar-thumb:hover {
    background: #ccc;
    border-radius: 10px;
}

@media screen and (min-width: 769px) {
    .resmaxheight582 {
        max-height: 582px;
    }
}

.membershipModalSize {
    max-width: 439px;
    border-radius: 13px;
}

.commonBtnStyle {
    height: 45px;
    width: 174px;
    border-radius: 6px;
}

.itemModalSize {
    max-width: 556px;
    border-radius: 10px;
}

.collectionListSortBTN {
    height: 50px;
    width: 200px;
    border-radius: 7px;
}

.exploreSelectUi {
    height: 45px;
    width: 305px;
    left: 345px;
    top: 270px;
    border-radius: 6px;
}

#homeMoveGiftHtml {
    position:relative;
}

#homeMoveGiftHtml::after {
    content: "";
    display: block;
    clear: both;
}

#opercity1 {
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease 0.75s;
    pointer-events: auto;
    position:absolute;
    inset: 0px;
}

#opercity2 {
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease 0s;
    pointer-events: none;
    position:absolute;
    inset: 0px;
}

.img-upload-wrap {
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 40px 30px;
    width: 100%;
    border-radius: 10px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

#rewardBal::placeholder {
    color: gray;
}
