*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #464646;
    display: flex;
    flex-direction: column;
    padding-top: 3%;
}
.body {
    flex: 1 0 auto;
}
.demo_warning {
    
	background-color: #ffb917;
	height: 24px;
	display: flex; 
	font-weight: bold;
	align-items: center;
	justify-content: center;
	color: rgb(255, 255, 255);
	width: 100%;
	margin-bottom: 20px;
}

.email_warning {
    
	background-color: #9d9d9d;
	height: 24px;
	display: flex; 
	font-weight: bold;
	align-items: center;
	justify-content: center;
	color: rgb(255, 255, 255);
	width: 100%;
	/* margin-bottom: 20px; */
}


.flex {
    display: flex;
}
.margin_flex {
    display: flex;
}
.category_margin_flex {
    display: flex;
    height: calc(100vh - 1%);
}
.space_between {
    justify-content: space-between;
}
.header_icon_settings{
    display: block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: cover;
}
#header_bell:hover {
    cursor: pointer;
}
#header_cart:hover {
    cursor: pointer;
}
.header_profile_sub_menu {
    display: none;
    position: absolute;
    top: 45px;
    right: 20px; 
    width: 200px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.header_profile_sub_menu-item {
    align-items: center;
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.header_profile_sub_menu-item a {
    display: inline-block;
    width: 20px; 
    height: 20px;
    transition: width 0.3s ease, height 0.3s ease;
    background-size: cover;
    background-repeat: no-repeat;
}
.header_profile_sub_menu-item:hover {
    font-weight: bold;
    cursor: pointer;
}
.header_profile_sub_menu-item:hover a {
    width: 23px;
    height: 23px;
}
.profile_sub_menu_text{
    padding-top: 1px;
    padding-left: 6px;
    color: #767676;
    text-decoration: none;
}
.header_profile_sub_menu-item:first-child {
    height: 60px;
}
.header_profile_sub_menu-item:last-child {
    border-bottom: none;
}
.header_profile_sub_menu.show {
    display: block;
    opacity: 0;
    animation: fadeInSlide 0.5s forwards;
}
.header_profile_sub_menu-list{
    list-style-type: none;
    padding-left: 0;
}
.cart-box {
    display: none;
    position: absolute;
    top: 50px;
    right: 0; 
    width: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.cart-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-box.show {
    display: block;
    opacity: 0;
    animation: fadeInSlide 0.5s forwards;
}
.notification {
    align-items: center;
    justify-content: space-between;
    display: flex;
    position: fixed;
    top: -100px; 
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    padding: 20px;
    background-color: #f8f8f8;
    color: #a77917;
    border-radius: 5px;
    border: 1px solid #a77917;
    opacity: 0;
    transition: opacity 0.5s ease, top 0.5s ease;
    z-index: 999;
}

.notification_text{
    width: 100%;
    text-align: center;
    justify-content: center;
}
.notification_icon {
    padding-right: 30px;
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-image: url(../icons/exclamation_mark_yellow.svg); */
}


.notification.show {
    top: 10%; 
    opacity: 1;
}


.notification-box {
    display: none; 
    position: absolute;
    top: 50px; 
    right: 0; 
    width: 300px; 
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.notification-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.notification-item:last-child {
    border-bottom: none;
}
.notification-box.show {
    display: block;
    opacity: 0;
    animation: fadeInSlide 0.5s forwards;
}
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    background-color: #ffffff;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px 10px 30px;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;   
}
.header__item{
    display: flex;
    align-items: center;
}
.header__logo {
    display: block;
    width: 200px;
    height: 35px;
    background-image: url(../icons/logo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.read_all_btn_container {
    display: flex;
    justify-content: center;

}

.form__button_search {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../icons/search.svg);
    background-repeat: no-repeat;
    background-color: #ffffff;
    border: none;
    position: absolute;
    top: calc(50% - 8px);
    left: 10px;
}

.form__button_search:hover {
    cursor: pointer;
}
.form__input {
    width: 400px;
    height: 30px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    padding: 5px 40px;
    color: #333;
    z-index: 999;
}
.form__input:focus {
    outline: 1.5px solid #cbcbcb;
}

.search_container {
    position: relative;
    z-index: 997;
    margin-left: 10px;
}

.search_auto_res {
    display: none;


    margin-top: 2px;
    border: 1px solid #e0e0e0;
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2px;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search_auto_res ul {
    display: none;

    list-style-type: none;
    padding: 0;
}

.search_auto_res ul li {
    padding:  7px 12px;
    cursor: pointer;
}

.search_auto_res ul li:hover {
    background-color:  #f2f2f2;
    border-radius: 5px;
}

.header__link {
    color: #767676;
    text-decoration: none;
}
.header__link_singup {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    padding: 5px 10px;
}
/* LOGGED HEADER STYLE
   LOGGED HEADER STYLE
   LOGGED HEADER STYLE */

.header__list {
    display: flex;
    list-style-type: none;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.header__link_log-out {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    padding: 5px 10px;
}

header__link_log-out:hover {
    cursor: pointer;
    background-color: #d1d1d1;
    border: 2px solid #b6b5b5;
}

.header__profile_picture {
    display: block;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.header__profile_picture_container:hover{
    cursor: pointer;
}

.sub_menu__profile_picture {
    display: block;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    
}

.sub_menu__profile_picture a{
    margin: 20px;
    padding: 20px;
}

.header__user_login {
    color: #333; 
    font-weight: 700;
    text-decoration: none;
    padding-left: 5px;
}

.header__user_login a {
    text-decoration: none;
    color: inherit;
}

.container {
  
    margin-top: 30px;
    max-width: 1250px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}



.main {
    display: flex;
    justify-content: space-between;
}
.main__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
}
.main__desc {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 15px;
    margin-top: 30px;
}


.main__quote {
    font-style: italic; 
    font-size: 16px;
    color: #555;  
    border-left: 4px solid #ccc;
    padding-left: 10px; 
    margin-bottom: 60px;
    margin-top: 40px;
}


.main__button {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    color: #333;
    text-decoration: none;
    justify-content: space-between;
   
    padding: 10px 10px 10px 10px;
}

.main__item {
    margin-top: 20px;
    list-style-type: none;
    text-align: left;
    padding-left: 0;
}
.main__span {
    display: block;
}
.main__text {
    flex-basis: 50%;
}
.main__model {
    width: 40%;
}
.main__img {
    width: 100%;
}


.main_page__swiper-container {
    overflow: hidden !important; 
}

.main_page__swiper-wrapper {
    display: flex;
    width: max-content !important;
}

.main_page__swiper-scrollbar {
    background: rgba(0,0,0,0.1);
    height: 4px;
    margin-top: 15px;
}

.main_page__swiper-scrollbar-drag {
    background: #000;
    height: 100%;
}

.main_page__swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


.all_cards_container {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Aligns items from left to right */
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}


.one_card_container {
    text-decoration: none;
    width: calc(20% - 10px);
    margin-bottom: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.one_card_container:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: none;
}

.one_card_container img {
    width: 100%; 
    height: 120px; 
    object-fit: cover; 
    display: block;
}

.one_card_text {

    padding: 10px;
    text-align: center;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; 
    font-size: 14px;
}
.card_text_div {
    display: flex;
    justify-content: center;
}
.img_img {
    width: 100%;
    height: 50%;
}
.card_text {
    justify-content: center;
    padding: 5px;
    display: block;
    width: 100%;
    height: 35%;
}

.card_text :hover {
    cursor: pointer;
}

.card_text p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.card_text_background{
    background-color: #ffffff;
}
.card_stats{
    margin: 16px -1px 0px -1px;
    display: flex;
    border-radius: 5px;
    justify-content: space-between;
    align-items: center;
}

.download_stats {
    display: flex;
    margin-left: 5px;
}
.download_icon {
    padding-top: 4px;
    margin-bottom: 2px;
    height: 20px;
    width: 20px;
}
.download_num{
    font-size: 15px;
    padding-top: 3px;
    color: #000;
}

.favorite_stats {
    display: flex;
}
.favorite_icon {
    margin-top: 4px;
    padding-top: 1px;
    height: 15px;
    width: 15px;
}
.favorite_num{
    font-size: 15px;
    padding-top: 3px;
    padding-left: 2px;
    color: #000;
}
.comment_stats {
    padding-right: 3px;
    margin-right: 4px;
    display: flex;
}
.comment_icon {
    padding-top: 3px;
    margin-top: 2px;
    height: 18px;
    width: 18px;
}
.comment_num{
    font-size: 15px;
    color: #000;
    padding-top: 3px;
    padding-left: 1px;
}


.model__title {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}



.footer__container {
    background-color: #ffffff;
    padding: 4px;
    border-top: 1px solid #e0e0e0;
    color: #757575;
    text-align: center;
    height: 56px;
}
.footer-links {
    display: flex;
    justify-content: center;
}
.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 8px;
}
.footer-links a:hover {
    text-decoration: underline;
}
.reserved__text {
    text-align: center;
}
/* --- EXPLORE-PAGE STYLE ---
   --- EXPLORE-PAGE STYLE ---
   --- EXPLORE-PAGE STYLE --- */
.category__title{
    font-weight: bold;
}

.category__block{
    margin-top: 10px;
    margin-bottom: 10px;
}
.mergin_flex {
    
    display: flex;
    margin-left: 3%;
    margin-right: 3%;
}
.sidebar-filter__container {
    float: left;
    width: 10%;
    margin: 40px 20px 20px 40px;
}
.sidebar-filter__header {
    font-weight: bold;
    margin-bottom: 8px;
}
.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: -1px;
}
.checkbox__block input {
    margin-right: 5px;
    margin-top: 5px;
    margin-bottom: 4px;
}
.checkbox__block {
    display: flex;
    align-items: center;
} 
.sidebar-filter__title-text {
    font-size: 18px;
    padding-bottom: 10px;
}
.explore__container {
    
    padding: 30px;
}
.explore__cards__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px; 
}
.explore__one_card_container {
    display: block;
    height: 230px;
    width: 360px;
    float: left;
    margin: 5px;
    position: relative;
    border: 1px solid #f2f2f2;
    border-radius: 10px; 
    overflow: hidden; 
}
.model_card_form {
    height: 100%;
    width: 100%;
}
.model_card_image {
    height: 65%;
    width: 100%;
    display: block;
}
.model__img {
    width: 100%; 
    height: 75%; 
    object-fit: cover;
}
.img_img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
.model__desc {
    font-weight: normal;
    text-decoration: none;
    color: #333;
}
.model__category {
    padding-top: 2px;
    font-weight: normal;
    text-decoration: none;
    color: #333;
}
.model__creator {
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.explore__one_card_container:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}
.search_info_p{
    padding-left: 10px;
    font-size: 19px;
}
/* --- ERROR-PAGE STYLE ---
   --- ERROR-PAGE STYLE ---
   --- ERROR-PAGE STYLE --- */
   .error__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}
.error-code {
    font-size: 10em;
    font-weight: bold;
    color: #333;
}
.error__error-message {
    margin: 10px;
    font-size: 1.5em;
    color: #555;
}
.error_description{
    font-size: 1.5em;
    color: #555;
}

.return-home__link {
    margin-top: 20px;
    
}
.return-home__link:hover {
    color: #000000;
    font-weight: 550;
}
.return-home__text {
    
    text-decoration: none;
    color: #333;
}
/* --- REGISTER-PAGE STYLE ---
   --- REGISTER-PAGE STYLE ---
   --- REGISTER-PAGE STYLE --- */


.terms_label input{
    margin-top: 20px;
    margin-left: 10px;
    padding: 10px;
}

.terms_label a {
    text-decoration: none;
    color: #333;
}

.terms_label a:hover {
    text-decoration: underline;
}


.input_error_msg {
    display: block;
    padding-left: 5px;
    font-size: 14px;
    color: #f02624;
    word-wrap: break-word;
}
.register_success {
    height: 35px;
    border-radius: 1px;
    border-color: #1f691f;
    text-align: center;
    background-color: #50a050;
}
.register_success_text {
    padding-top: 8px;
    color: #fff;
    font-weight: bold;
    
}
.register-form__title {
    font-size: 27px;
    text-align: center;
}
.register-form__container {
    max-width: 326px;
    background: #fff;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.register__input {
    height: 40px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 13px;
    border: 1px solid #e0e0e0;
    padding: 5px 40px;
    color: #333;
    text-align: center;
    outline: none;
}

.register__input:focus {
    outline: 1.5px solid #cbcbcb;
}




.register-form__field {
    padding: 5px;  
}
.registration__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.register-form__register-button{
    padding: 10px;
    display: block;
    height: 40px;
    width: 264px;
    background-color: #7e7e7e;
    color: #fff;
    border-radius: 13px;
    margin-bottom: 2px;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
    cursor: pointer;
}


.register-form__divider{
    text-align: center;
}
.register-form__google-button {
    display: block;
    padding: 10px;
    text-align: center;
    height: 40px;
    background-color: #da3c3c;
    color: #fff;
    border-radius: 13px;
    margin-bottom: 20px;
    margin-top: 2px;
    text-decoration: none;
    width: 264px;
}
.already-have-an-account__link {
    text-decoration: none;
    color: inherit;
}
.already-have-an-account__link:hover {
   text-decoration: underline;
}
.already-have-an-account {
    text-align: center;
}    
/* --- LOGIN-PAGE STYLE ---
   --- LOGIN-PAGE STYLE ---
   --- LOGIN-PAGE STYLE --- */

.login-form__register-button{
    padding: 10px;
    display: block;
    height: 40px;
    width: 264px;
    background-color: #555;
    color: #fff;
    border-radius: 13px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
/* --- MODEL-PAGE STYLE ---
   --- MODEL-PAGE STYLE ---
   --- MODEL-PAGE STYLE --- */

#closeModelSample {
    display: block;
    height: 40px;
    margin-right: 5px;
    padding: 7px;
    background-color: #6a47cb;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease
}


#closeModelSample:hover {
    background-color: #4c3293;
}


#loadModelSample {
    display: block;
    margin-right: 10px;
    padding: 7px;
    background-color: #6a47cb;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease
}


#loadModelSample:hover {
    background-color: #4c3293;
}

canvas {
    width: 100%;
    height: 100%;
}

#container {
    position: relative;
}

#container canvas,
#overlay {
    position: absolute;
}

#overlay {
    z-index: 1;
    width: 100%
}

/* CSS for a spinning animation */
#loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3d3d3d;
  
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.model-page__inner_div_container {
    position: relative;
    padding: 29px 15px 15px 15px;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    margin-top: 5%;
    margin-left: 15.9%;
    margin-right: 15%;

}
.dg.main {
    position: absolute; 
    top: 40px;         
    left: 20px;        
    z-index: 10;       
}
.dg.main ul{
   padding-top: 20px;     
}
.model-page__main__container {
    position: relative;
    padding: 20px;
    border-radius: 7px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: 68.75%; 
    margin: 20px 16.14% 20px 16.14%;
    display: flex; 
    flex-wrap: wrap;
}
.model-page__images__container {
    position: relative;
    
    width: 100%;
    transition: opacity 0.1s ease, width 0.5s ease, height 0.5s ease; 
    min-height: 339px;
}
@media (max-width: 1200px) {
    .model-page__images__container {
        width: 100%;   
    } 
    .model-page__description__container {
        flex: none; 
        width: 100%; 
    }
}
@media (min-width: 1200px) {
    .model-page__images__container {
        width: 50%;
    } 
    .model-page__description__container {
        width: 50%; 
    }
}
.model-page__images__container.full-size {
    width: 100%;
    height: 710px;
}
.model-page__images {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, width 0.5s ease, height 0.5s ease; 
    opacity: 1;
    z-index: 2;
}
.model-page__render__container {
    background-color: #d7d7d7;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, width 0.5s ease, height 0.5s ease; 
    z-index: 1;
}
.model-page__render__container.fade-in {
    opacity: 1;
    z-index: 2;
}
.model-page__render__container.fade-out {
    opacity: 0;
    z-index: 1;
}
.model-page__render__container.full-size {
    width: 100%;
    height: 706px;
}
.model-page__images.fade-out {
    opacity: 0;
    z-index: 1;
}
.model-page__images.fade-in {
    opacity: 1;
    z-index: 2;
}
.model-page__3d_look_frame {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.model-page__images {
    position: relative;
    width: 100%;
}
.model-page__images img{
    position: absolute; 
    inset: 0;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.model-page__image {
    max-width: 100%;
    height: auto;
    display: block;
    padding-bottom: 40px;
}
.slider {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75 hsla(0, 0%, 0%, 0.25);
    border-radius: 5px;
}
.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}
.slider_nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.slider_nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}
.slider_nav a {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 5px;
    background-size: cover;
}
.slider_nav a:hover {
    opacity: 1;
}
.swiper-container {
    height: 100%; 
    margin: auto;
    overflow: hidden;
}
.swiper-slide {
    height: 100%;
    overflow: hidden;
}
.swiper-slide img {

    height: 100%;
    
}
.swiper-image {
    position: relative;
    height: 100%;
    width: 100%;
}
 .swiper-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
.swiper-button-next, .swiper-button-prev {
    color: rgb(255, 255, 255) !important; 
    opacity: 0.5;
    transition: opacity 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
    color: rgb(255, 255, 255);
}
.model-page__description__container {
    /* margin-top: 20px; */
    padding-left: 30px;
    /* padding-right: 30px;  */
}
.model-page__render-nav__container {
    display: none;
    padding-left: 30%;
    padding-right: 30%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /
}
@media (max-width: 1200px) {
    .model-page__render-nav__container {
        padding-left: 10%; 
        padding-right: 10%;
        flex-wrap: wrap; 
    }
    .model-page__render-nav__container button {
        flex: 0 0 calc(50% - 10px); 
    }
}

.model-page__title {
    margin-top: 0.67;
    display: flex;
    justify-content: space-between;
}

.model-page__title__text {
    text-align: left;
    font-size: 24px;
    margin: 0px 0px 0px 0px;
   margin-top: -5px;
   padding-top: 10px;
   }
.model-page__main-description {
    padding-top: 20px;
    padding-bottom: 30px;  
}
.model-page__description__specs ul {
    list-style-type: circle; 
    padding-left: 17px ; 
}
.model_actions_conteiner{
    position: relative;
    padding-top: 20px;
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.model-page__download__button {
    display: block;
    margin-right: 10px;
    padding: 7px;
    background-color: #767676;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.model-page__download__button:hover {
    background-color: #444; 
}
.model-page_add_library__button {
    display: block;
    margin-right: 10px;
    padding: 7px;
    background-color: #767676;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease
}
.model-page_remove_library__button {
    display: block;
    margin-right: 10px;
    padding: 7px;
    background-color: #767676;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease

}
.model-page_render_light_button {   
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    height: 40px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 6px;
    
}
.model-page_render_light_button .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url('../icons/bulb_gray.svg');
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease;
}
.model-page_render_light_button.on {
    background-color: #ad8c2b;
}
.model-page_render_light_button.on:hover {
    background-color: #917625;
}
.model-page_render_light_button.off {
    background-color: #a9a9a9;
}
.model-page_render_light_button.off:hover {
    background-color: #767676;
}
.model-page_render_light_button.on .icon {
    background-image: url('../icons/bulb_yellow.svg');
}
.model-page_render_axes_button.on {
    background-color: #3fad2b;
}
.model-page_render_axes_button.on:hover {
    background-color: #2a9125;
}
.model-page_render_axes_button.off {
    background-color: #a9a9a9;
}
.model-page_render_axes_button.off:hover {
    background-color: #767676;
}
.model-page_render_axes_button.off .icon {
    background-image: url('../icons/axis_gray.svg');
}
.model-page_render_display_material_button {
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    height: 40px;
    background-color: #347fd5;
    font-size: 14px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    justify-content: center;
    transition: background-color 0.2s ease;
}
.model-page_render_display_material_button .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url('../icons/texture.svg');
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease;
}
.model-page_render_axes_button {
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    height: 40px;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 120px;
    gap: 6px
}
.model-page_render_axes_button .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url('../icons/axis_white.svg');
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease;
}
.model-page__remove_favorite__block {
    position: absolute;
    display: none;
   
    bottom: 0;
}

.model-page__add_favorite__block {
    position: absolute;
    display: none;
   
    bottom: 0;
}


.model-page__remove_favorite__confirm {
    display: none;
    margin-left: 3px;
    min-height: 31px;
    margin-top: 2px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 3px;
    border-radius: 5px;
    background-color: #dadada;
    color: #4b4a4a;
    word-break: break-word; 
    max-width: 200px;
}

.model-page__remove_favorite__button {
    margin-top: 10px;
    height: 36px;
    width: 36px;
    display: none;
    background-color: transparent;
    background-image: url(../icons/favorite/like_pink_fill.svg);
    background-repeat: no-repeat;
    background-size:75%;
    background-position: center;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.1s ease;
}
.model-page__remove_favorite__button:hover {
    background-color: #dadada;
    background-image: url(../icons/favorite/like_gray_fill_crossed.svg);
}

.model-page__add_favorite__block {
    position: absolute;
    display: none;
   
    bottom: 0;
}

.model-page__add_favorite__confirm {
    display: none;
    margin-left: 3px;
    min-height: 31px; 
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 3px;
    border-radius: 5px;
    background-color: #dadada;
    color: #4b4a4a;
    word-break: break-word; 
    max-width: 280px;
}

.model-page__add_favorite__button {
    margin-top: 10px;
    height: 36px;
    width: 36px;
    display: none;
    background-color: transparent;
    background-image: url(../icons/favorite/like_gray_no_fill.svg);
    background-repeat: no-repeat;
    background-size:75%;
    background-position: center;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.1s ease;
}
.model-page__add_favorite__button:hover {
    background-color: #dadada;
    background-image: url(../icons/favorite/like_gray_fill.svg);
}


.model-page__no__account__block{
    margin-top: 20px;
}
.model-page__have__account__button{
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #9d9d9d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page__have__account__button:hover {
    background-color: #555555;
}


.model-page__actions__block{
    padding-right: 81%;
    margin: 8px 0px 0px 0px;
    display: flex;
}

.model-page-reply__actions__block{
    padding-right: 81%;
    margin: 8px 0px 0px 0px;
    display: flex;
}

.model-page__reply_actions__block{
    padding-right: 81%;
    margin: 8px 0px 0px 0px;
    display: flex;
}

.model-page__reply__button{
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
    background-color: #ffffff;
}
.model-page__reply__button:hover {
    border: none;
    background-color: #f5f5f5;
}

.model-page-reply__reply__button{
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-reply__reply__button:hover {
    border: none;
    background-color: #f5f5f5;
}

.model-page__cancel__button{
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #666666;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page__cancel__button:hover {
    border: none;
    background-color: #d1d1d1;
}

.model-page-reply__cancel__button{
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #666666;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-reply__cancel__button:hover {
    border: none;
    background-color: #d1d1d1;
}

.model-page__sent__button{
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page__sent__button:hover {
    border: none;
    color: #ffffff;
    background-color: #507cdc;
}
.model-page-reply__sent__button{
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-reply__sent__button:hover {
    border: none;
    color: #ffffff;
    background-color: #507cdc;
}

.model-page__reply_and_more_block {
    display: flex;
    margin-left: 20px;
}

.model-page__more__actions__block {
    margin-left: 5px;
    display: none;
}
.model-page__more__actions__flex {
    margin-top: 1px;
    display: flex;
}

.model-page__more__button {
    border: none;
    text-decoration: none; 
    transition: background-color 0.1s ease;
    margin-left: 15px;
    border-radius: 50px;
    padding-bottom: 6px;
    font-weight: bold;
    background-color: #ffffff;
}
.model-page__more__button:hover{
    cursor: pointer;
    
    background-color: #f5f5f5;
}

.model-page-reply__more__button {
    border: none;
    text-decoration: none; 
    transition: background-color 0.1s ease;
    margin-left: 15px;
    border-radius: 50px;
    padding-bottom: 6px;
    font-weight: bold;
    background-color: #fff;
}
.model-page-reply__more__button:hover{
    cursor: pointer;
    
    background-color: #f5f5f5;
}

.model-page__edit__button{
    font-size: 14px;
    
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page__edit__button:hover {
    border: none;
    background-color: #d2c9a7;
}

.model-page-reply__edit__button{
    font-size: 14px;
    
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-reply__edit__button:hover {
    border: none;
    background-color: #d2c9a7;
}

.model-page__delete__button{
    margin-top: 0.5px;
    font-size: 14px;
    padding: 5px 3px 5px 3px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page__delete__button:hover {
    border: none;
    background-color: #dcaaaa;
}

.model-page-reply__delete__button{
    margin-top: 0.5px;
    font-size: 14px;
    padding: 5px 3px 5px 3px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-reply__delete__button:hover {
    border: none;
    background-color: #dcaaaa;
}

.model-page__report__button{
    font-size: 14px;
    padding: 5px 3px 5px 3px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page__report__button:hover {
    border: none;
    background-color: #dcaaaa;
}

.model-page-reply__report__button{
    font-size: 14px;
    padding: 5px 3px 5px 3px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-reply__report__button:hover {
    border: none;
    background-color: #dcaaaa;
}

.model-page__like-dislike{
    margin-left: auto;
    display: flex;
    
}
.model-page__like_button {
    border: none;
    display: block;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    margin-right: 25px;
    background-color: #ffffff
}
.model-page__like_button:hover {
    cursor: pointer;
    background-color: #f5f5f5;
}

.model-page__dislike_button {
    border: none;
    transform: rotate(180deg);
    display: block;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    background-color: #ffffff
}
.model-page__dislike_button:hover {
    cursor: pointer;
    background-color: #f5f5f5;
}

.model-page__like_icon {
    width: 20px;
    height: 20px;
}

.model-page__need__account__button{
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #242497;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page__need__account__button:hover {
    background-color: #161664;
}




.model-page__comments__container {
    padding: 20px;
    border-radius: 7px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: 68.75%; 
    margin: 0 16.14% 20px 16.14%;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin-top: 10px;
}

#commentsContainer {
    width: 70%;
}

#leave_comment_block {
    display: flex;
    
}

.sentReplyForm {
    display: block;
}

.model-page-reply_container {
    padding: 5px 5px 5px 0px;
    display: none;
    margin-top: 4px;
}

.model-page-reply-reply_container {
    padding: 5px 5px 5px 0px;
    display: none;
    margin-top: 4px;
}



.model-page__reply_picure-text {
    display: flex;
}

.model-page__reply_picure-text textarea{
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    outline: none;
    resize: none;
}

.model-page__reply_actions {
    width: 100%;
}
.model-page__reply_actions_buttons {
    padding-left: auto;
    display: flex;
    padding-left: 85%;
    padding-top: 5px;
}


.model-page__reply__textarea {
    padding-left: 5px;
}

.model-page__comment__block {
    width: 100%;
    display:flex;
    border: 1px solid #e0e0e0;
    border-radius: 7px; 
    padding: 8px;
    margin: 6.5px 5px 5px 5px ;
}
.model-page__one_reply {
    width: 100%;
    display:flex;
    margin: 3px 0px 3px 0px ;
}


.model-page__info-block {
    display: flex;
}

.model-page__comment-author {
    padding: 5px 5px 5px 0;
    font-weight: bold;
}
.model-page__comment-date {
    font-size: 12px;
    padding: 7px 1px 1px 1px;
    display: block;
}

.model-page-reply__text_container {
    display: block;
    margin-left: 1%;
    width: 93%; 
}

.model-page__text_container {
    display: block;
    margin-left: 1%;
    width: 90%; 
}
.model-page__comment-text{
    height: auto;
}

.model-page__leave-comment__container {
    margin-top: 10px; 
    
}

.model-page__leave-comment__container form {
    width: 100%; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

.model-page__leave-comment__container label {
    font-weight: bold;
    margin-bottom: 10px; 
}

.model-page__leave-comment__container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0; 
    border-radius: 5px; 
    margin-bottom: 10px; 
    outline: none;
    resize: none;
}

.model-page__leave-comment__container button {
    padding: 7px 20px; 
    background-color: #3f90e7; 
    color: #fff; 
    border: none;
    margin-bottom: 10px;
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.1s ease
}

.model-page__leave-comment__container button:hover {
    background-color: #347ecd; 
}
.model-page__not_authorized_sent_coment{
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9cfcf;

    font-weight: bold;
    color: #792f2f;
}

.model-page__avatar__container {
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    overflow: hidden; 
}

.model-page__avatar__square {
    width: 100%;
    height: 100%;
}

.model-page__profile-avatar {
    width: 100%; 
    height: 100%; 
}

.model-page-edit__cancel__button {
    padding: 3px 2px 3px 2px;
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #666666;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}

.model-page-edit__cancel__button:hover {
    border: none;
    background-color: #d1d1d1;
}
.model-page-edit__save__button {
    padding: 3px 2px 3px 2px;
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-edit__save__button:hover {
    border: none;
    color: #ffffff;
    background-color: #507cdc;
}

.model-page__edit-comment-block {
    display: none;
}

.model-page__edit-comment-form {
    display: block;
}
.model-page__edit-actions-buttons {
    margin-top: 7.5px;
}
.model-page-edit-reply__cancel__button {
    padding: 3px 2px 3px 2px;
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #666666;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-edit-reply__cancel__button:hover {
    border: none;
    background-color: #d1d1d1;
}
.model-page-edit-reply__save__button {
    padding: 3px 2px 3px 2px;
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-edit-reply__save__button:hover {
    border: none;
    color: #ffffff;
    background-color: #507cdc;
}

.model-page-reply__edit-comment-block {
    display: none;
}

.model-page-reply__edit-comment-form {
    display: block;
}
.model-page-reply__edit-actions-buttons {
    margin-top: 7.5px;
}
.model-page-delete__no__button {
    padding: 3px 2px 3px 2px;
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #666666;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-delete__no__button:hover {
    border: none;
    background-color: #d1d1d1;
}
.model-page-delete__yes__button {
    padding: 3px 2px 3px 2px;
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-delete__yes__button:hover {
    border: none;
    color: #ffffff;
    background-color: #507cdc;
}

.model-page__delete-comment-block {
    display: none;

}

.model-page__delete-comment-form {
    display: block;
}
.model-page__delete-actions-buttons {
    margin-top: 13.9px;
}

.model-page-delete-reply__no__button {
    padding: 3px 2px 3px 2px;
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #666666;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}

.model-page-delete-reply__no__button:hover {
    border: none;
    background-color: #d1d1d1;
}
.model-page-delete-reply__yes__button {
    padding: 3px 2px 3px 2px;
    font-size: 14px;
    border: none;
    display: inline-block;
    font-weight: bold;
    background-color: transparent;
    color: #464646;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease; 
}
.model-page-delete-reply__yes__button:hover {
    border: none;
    color: #ffffff;
    background-color: #507cdc;
}

.model-page-reply__delete-comment-block {
    display: none;
}

.model-page-reply__delete-comment-form {
    display: block;
}
.model-page-reply__delete-actions-buttons {
    margin-top: 13.9px;
}
/* --- USER-PAGE STYLE ---
   --- USER-PAGE STYLE ---
   --- USER-PAGE STYLE --- */
   .checkmark-container {
    width: 100px;
    height: 100px;
    position: relative;
}
.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid #8e8e8e;
    border-bottom-width: 10px;
    border-bottom-color: transparent;
    animation: spin 1s linear infinite;
}
.checkmark {
    display: none;
    width: 30px;
    height: 60px;
    border-right: 10px solid #2e6d30;
    border-bottom: 10px solid #2e6d30;
    transform: rotate(45deg);
    position: absolute;
    top: 20px;
    left: 35px;
    opacity: 0;
    animation: fadeInCheckmark 0.5s ease-in-out forwards 1s;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes fadeInCheckmark {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#ImageSpacePreview {
    height: 455px;
}
.add_image_div{
    position: relative;
    display: block;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
    background-color: #fafafa;
    align-items: center;
    justify-content: center;
}

.add_image_text{
    padding-top: 20px;
    padding-left: 40px;
    font-weight: bold;
    color: #4f4f4f;
}
.add_image_button {
    width: 160px;
    height: 138px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size:40%;
    background-position: center;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.1s ease;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.image_preview_info{
    align-items: center;
    justify-content: center;
}

.image_preview_info p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.image_preview_block{
    height: 47%;
    width: 31%;
    margin: 1%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
    background-color: #fafafa;
}

.add_image_block {
    height: 47%;
    width: 31%;
    margin: 1%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
    background-color: #fafafa;
}

.image_preview {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

#add_image {
    cursor: pointer;
}

.image_preview_button_div {
    position: relative;
    border: 1px solid #e0e0e0;
    height: 29px;
    width: 29px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.image_preview_div{
    width: 100%;
    max-width: 300px;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}
.main_image_text{
    position: absolute;
    bottom: -2px;
    left: 32px;
    font-size: 12px;
    color: #616161;
}

.image_preview_button {
    height: 27px;
    width: 27px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size:75%;
    background-position: center;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.1s ease;
}


.user_page_edit_button{
    display: block;
    height: 35px;
    width: 80px;
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 16px;
    border-radius: 7px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e0e0e0;
}
.user_page_edit_button:hover {
    cursor: pointer;
    background-color: #4589ff;
}

.edit_form_button{
    display: block;
    height: 35px;
    width: auto;
    padding: 0 10px 0 10px ;
    margin: 0 20px 0 20px;
    font-size: 18px;
    border-radius: 7px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    transition: background-color 0.1s ease;
}



.cancel_changes {
    color: #fff;
    background-color: #a62020;
}

.cancel_changes:hover {
    cursor: pointer;
    background-color: #911e1e
}

.save_changes_inactive {
    cursor: default;
    color: #d2d2d2;
}

.save_changes_active {
    color: #fff;
    background-color: #29903b;
}

#success_ok {
    margin-top: 10px;
    visibility: hidden;
}

.save_changes_active:hover{
    cursor: pointer;
    background-color: #1f7630;
}



.close_button_div {
    position: absolute;
    top: 1px;
    right: 1px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    padding: 1px;
    cursor: pointer;
}

.close_button_div:hover {
    border: 2px solid #b4b4b4;
}

.close_button {
    height: 20px;
    width: 20px;
    padding: 5px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size:75%;
    background-position: center;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.user_page__inner_edit {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99998;
    background-color: rgba(0, 0, 0, .4);
    align-items: center;
    justify-content: center;
}

.user_page__inner_edit_container {
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    margin-top: 1%;
    margin-left: 16%;
    margin-right: 16%;

}

#edit_result_div {
    position: relative;
    padding: 20px;
    margin-top: 15%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center; 
}

#edit_result_div p {
    color: #8e8e8e;
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.user_page__model_actions{
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 10px 0px 10px 50px;
    margin-left: auto;
}

.user_page__model_actions_buttons{
    justify-content: center;
    align-items: center;
}

.user-page__action_button_div {
    min-width: 32px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
    cursor: pointer;
}

.user-page__action_button_div:hover {
    background-color: #d7d7d7;
    cursor: pointer;
}

.user-page__action_model__text {
    color: #71717a;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; /
}

@media (max-width: 800px) { 
    .user-page__action_model__text {
        display: none; 
    }
}


.delete {
    margin-right: 4px;
}

.show {
    margin-right: 8px;
}

.hide {
    margin-right: 10px;
}

.edit {
    margin-right: 14px;
}

.restore {
    margin-right: 2px;
}





.user-page__action_model__button {
    height: 30px;
    width: 30px;
    padding: 5px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.1s ease;
    flex-shrink: 0;
}

.bulb_grey_icon {
    background-image: url(../icons/bulb_gray.svg);
}

.bulb_yellow_icon {
    background-image: url(../icons/bulb_yellow.svg);
}

.questiob_icon {
    background-image: url(../icons/question.svg);
}

.history_icon {
    background-image: url(../icons/history.svg);
}

.heart_icon {
    background-image: url(../icons/heart.svg);
}
.settings_icon {
    background-image: url(../icons/settings.svg);
}

.cart_icon {
    background-image: url(../icons/cart.svg);
}

.bell_icon {
    background-image: url(../icons/bell.svg);
}

.home_icon {
    background-image: url(../icons/home.svg);
}

.delete_icon {
    background-image: url(../icons/delete.svg);
}

.edit_icon {
    background-image: url(../icons/edit.svg);
}

.hide_icon {
    background-image: url(../icons/hide.svg);
}

.show_icon {
    background-image: url(../icons/show.svg);
}

.restore_icon {
    background-image: url(../icons/restore.svg);
}

.close_icon {
    background-image: url(../icons/close_gray.svg);
}

.empty_star_icon {
    background-image: url(../icons/star_empty.svg);
}

.star_icon {
    background-image: url(../icons/star_filled.svg);
}

.plus_circle_icon {
    background-image: url(../icons/plus_circle.svg);
}

.logout_icon {
    background-image: url(../icons/logout.svg);
}

.profile_icon {
    background-image: url(../icons/profile.svg);
}

.library_icon {
    background-image: url(../icons/library.svg);
}

.drop_down_icon {
    background-image: url(../icons/drop_down.svg);
}

.drop_up_icon {
    background-image: url(../icons/drop_up.svg);
}

.list_icon {
    background-image: url(../icons/list.svg);
}

.grid_icon {
    background-image: url(../icons/grid.svg);
}

.user_page__model_name{
    text-decoration: none;
    color: inherit;
}

.user-page__title{
    color:#1a1a1a;
    padding-bottom: 10px;
    text-decoration: none;
}  

.user_page__model_category{
    margin-bottom: 5px;
}

.user_page__tag{
    font-style: italic;
    color: #6e6e6e;
    text-decoration: underline;
    padding: 0 5px 0 5px ;
}

.user_page__model_desc{
    margin-bottom: 5px;
}
.user_page__model_upload_date {
    font-style: italic;
    color: #999999;
    font-size: 0.9em;
    padding-top: 3px;
}

.user_page__model_tags{
    display: flex;
    margin-bottom: 5px;
}

.user_page__model_date_info{
    padding: 3px;
    margin: 5px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
}
.user_page__stats{
    display: flex;
    border-radius: 5px;
    padding: 3px;
    margin: 5px;
    border: 1px solid #f2f2f2;
    background-color: #fafafa;
}

.user_page__model_img{
    display: block;
}

.user_page__picture_block {
    height: 140px;
    width: 17%;
    border-radius: 5px;
    margin: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.user_page__picture {
    height: 100%;
    width: 100%;
}


.user_page__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user_page__model_info{
    width: 70%;
    border-radius: 5px;
    padding: 10px;
    background-color: #ffffff;
}

.user_page__my_model{
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    background-color: e0e0e0;
    padding-right: 10px;
}


.user_page__model_img {
    max-height: 150px;
    width: auto;
}





.user-page_token_note {
    padding-top: 5px;
    padding-left: 10px;
    resize: none;
    height: 65px;
    width: 100%;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;

}

.user-page_token_note:focus {
    outline: 1.5px solid #cbcbcb;
}

.new_token_block {
    width: 30%;
}

.user-page__token_title{
    padding-bottom: 20px;
}

.user-page__new_token_title{
    padding-bottom: 10px;
}

.user_page_new_token_form{
    display: block;
    margin-top: 15px;
}

.user_page_active_tokens{
    display: flex;
    
}

.user-page__token_table_column{
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;

}

.user_page_active_token{
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 5px;
    justify-content: space-between;
}

.user_page__active_token_note{
    padding-top: 5px;
}

.user_page__active_token_time{
    padding-right: 50px;
    padding-top: 5px;
}

.user_page_active_token h4 {
    padding-top: 5px;
    padding-left: 10px;
}

.user_page__close_token_button{
    display: none;
    padding: 5px 15px;
    background-color: rgb(255, 190, 70);
    color: rgb(112, 77, 0);
    border: none;
    border-radius: 5px;
    border: solid 1px rgb(232 158 0);
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease;

}
.user_page__close_token_button:hover {
    background-color: rgb(232 158 0);
}

.user_page__progress_bar_container {
    display: none;
    border-radius: 10px;
    height: 20px;
    background-color: rgb(232, 158, 0); 
    color: rgb(130, 89, 0);
    padding: 2px;
    position: relative;
}

.user_page__progress_bar {
    position: absolute;
    height: 16px;
    border-radius: 8px;
    width: calc(100% - 4px);
    background-color: #fff4d4; 
    animation: progress-animation 15s forwards;
}

@keyframes progress-animation {
    0% { width: calc(100% - 4px);}
    100% { width: 0%;}
}

#token_display {
    border-radius: 5px;
    border: 2px dotted #e0e0e0;
    padding: 20px;
    margin-top: 2px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    color: #808080;
}

#token_display.active {
    border: 2px solid rgb(232, 158, 0); 
    background-color: #fff4d4; 
    color: rgb(130, 89, 0);
}

#token_display .warning {
    color: inherit; 
    padding-bottom: 10px;
}


#token_name {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    height: 30px;
    padding-left: 10px;
}

#token_name:focus {
    outline: 1.5px solid #cbcbcb;
}

#new_token {
    resize: none;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 2px dotted #e0e0e0;
}

#new_token:focus {
    outline: none;
}

#new_token.active {
    border: 2px solid rgb(232 158 0);
}

 #token_name_error{
    color: red;
    display: none;
 }

#no_active_tokens{
    color: #9a9a9a;
    padding: 40px;
}

.user-page__profile-info__container {
    padding: 20px;
    border-radius: 7px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    margin-left: 10%;
    margin-right: 10%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 5px;
}
.user-page_ballance_container {
    max-width: 470px;
    position: relative;
    justify-content: space-between;
    display: flex;
    height: 150px;
    width: 40%;
    margin-left: 20px;
    padding: 20px;
    border-radius: 7px;
    background-color: #e3d0e3;
    border: 1px solid #b697b7;
}
.user-page_pi_logo {
    padding-top: 15px;
}
.user-page_pi_logo img{
    left: 0;
    padding: 0px;
    width: 80px;
    height: 80px ;
    border-radius: 50%;
    object-fit:contain;
    z-index: 1;
    background-color: #713771;
}
.user-page_ballance_text {
    padding-bottom: 0px;
}
.user-page_ballance_text span{
    color: #552877;
    font-weight: bold;
}
.user-page_our_app_text{
    font-size: 1.6vh;
    color: #552877;
}
.user-page_our_app_buttons{
    font-size: 1.8vh;
    display: flex;
    padding: 5px;
}
.user-page_our_app_button{
    font-weight: bold;
    background-color: #713771;
    border: 1px solid #552877;
    color: #fcb44b;
    border-radius: 7px;
    padding: 4px 9px 4px 9px;
    margin-right: 20px;
}
.user-page_our_app_button:hover{
    cursor: pointer;
}
.user-page_curernet_ballance{
    padding-bottom: 10px;
    display: block;
}
.user-page_ballance_value {
    color: #552877;
    font-weight: bold;
    text-decoration: un ;
}
.user-page__main-info__block {
    display: flex;
}
.user-page_question_button {
    padding: 5px;
    position: absolute;
    top: 3px;
    right: 3px;
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../icons/question.svg);
    background-repeat: no-repeat;
    background-color: transparent;
    border: 1px solid #602d87;
    border-radius: 50%;
    cursor: pointer;
    background-size: 80%;
    background-position: center; 
    z-index: 3;
}
.user-page_my_ballance{
    position: relative;

}
.user-page_modal_key_activate {
    display: none;
    background-color: #e3d0e3;
    top: -20px;
    position: absolute;
    z-index: 3;
    margin-top: 20px;
    padding: 0px 15px 5px 0px;
    
}
.user-page_modal_key_activate.show {
    display: block;
    opacity: 0;
    animation: fadeInSlide 0.25s forwards;
}
.user-page_key_response{
    visibility: hidden;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 25px;
    color: #552877;
}
.user-page_key_response.visible{
    visibility: visible;
}
.user-page_modal_question_window {
    display: none;
    left: 260px;
    top: 10px;
    border-radius: 7px;
    border: 1px solid #d5b9d5;
    background-color: #e3d0e3;
    position: absolute;
    width: 300px;
    height: 220px;
    z-index: 4;
}
.user-page_key_input {
    height: 30px;
    padding-top: 2px;
    width: 320px;
    padding-left: 7px;
    border: 1px solid #602d87;
    border-radius: 7px;
    font-size: 17px;
    color: #552877;
    text-transform: uppercase;
}
.user-page_key_input::placeholder {
    color: #602d87;
    opacity: 0.7;
}
.user-page_key_input:focus {
    outline: none;
}
.user-page_modal_question_window.show {
    display: block;
    opacity: 0;
    animation: fadeInSlide 0.5s forwards;
}



.user-page_question_text{
    font-weight: bold;
    font-size: 15px;
    padding: 10px;
    color: #552877;
}

.user-page_qestion_answer{
    font-size: 15px;
    font-style: italic;
    padding: 10px;
    color: #552877;
}


.user-page__main-info {
    padding-top: 20px;
    padding-left: 50px;
}
.user-page__title_block {
    padding-bottom: 30px; 
}
.user-page__profile-nav__container {
    margin-left: 310px;
    margin-right: 310px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.user-page__nav__block {
    display: flex;
    margin-bottom: 5px;
}
.user-page__nav__block_name {
    border-radius: 5px;
    background-color: #f0f0f0;
    border: 1px solid #c2c2c2;
    width: 200px;
    height: 50px;
}
.user-page__nav__block_name h4{
    text-align: center;
    padding-top: 15px;
}
.user-page__nav__block__table {
    width: 1100px;
    align-items:center;
    border-radius: 5px;
    display: flex;
    background-color: #f0f0f0;
    border: 1px solid #c2c2c2;
    justify-content: space-between;
    flex-direction: column;
}
.user-page__nav__block__head {
    height: 49px;
    width: 1100px;
    padding-left: 100px;
    padding-right: 70px;
    align-items:center;
    display: flex;
    border-bottom: 1px solid #c2c2c2;
    justify-content: space-between;
    align-items: center;
}
.user-page__nav__block__column__name {
    display: block;
    text-align: center;
}
.user-page__nav__block__cells {
    border: 1px solid #c2c2c2;
    padding: 8px;
}
.user-page__nav__block__table table {
    border-collapse: separate;
    border-spacing: 0 5px;
}
.user-page__nav__block__cells td {
    padding: 10px;
    text-align: center;
    width: 350px;
    border-bottom: 1px solid #c2c2c2
}


.user-page__nav__block__cells_link {
    display: inline-block;
    padding: 10px 10px;
    background-color: #e3e3e3;
    color: #262626;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease;
    
}
.user-page__nav__block__cells_link:hover {
    color: #ebebeb; 
    background-color: #484848;
}

.user-page__nav__block__cells td:first-child {
    border-left: none;
}
.user-page__nav__block__cells td:last-child {
    border-right: none;
}
.user-page__log-out {
    margin-left: 70%;
}
.user-page__log-out a {
    color: inherit;
    text-decoration: none;
}
.user-page__log-out a:hover {
    font-weight: 600;
}

.user-page__moderator_sector {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #9f0045;
}
.user-page_approve_button {
    display: inline-block;
    margin-top: 10px;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #20a632;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease;

}
.user-page_approve_button:hover {
    background-color: #1f691f; 

}
.user-page_create_token_button{
    display: block;
    padding: 5px 14px;
    background-color: #20a632;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease;

}
.user-page_create_token_button:hover {
    background-color: #1f691f; 

}

.user-page_delete_token_button{
    display: block;
    padding: 5px 15px;
    background-color: #a62020;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease;

}
.user-page_delete_token_button:hover {
    background-color: #691f1f; 
}






.user-page_reject_button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #962828;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; 
    transition: background-color 0.1s ease;

}
.user-page_reject_button:hover {
    background-color: #5f1919; 

}
.user-page__avatar__container {
    width: 150px; 
    height: 150px; 
}

.user-page__avatar__square {
    position: relative;
    width: 150px;
    height: 150px;
}

.user-page__profile-avatar {
    border-radius: 50%; 
    width: 150px;
    height: 150px;
    object-fit: cover; 
    object-position: center; 
    display: block; 
}



.user-page__upload-button {
    cursor: pointer;
    position: absolute;
    height: 20px;
    width: 160px;
    right: -5px;
    top: 98%;
    border: 1px solid #e0e0e0;
    background-color: #f8f8f8;
    padding: 1px 12px;
    border-radius: 5px;
    transition: background-color 0.1s ease;
}

.user-page__upload-button:hover {
    background-color: #e3e3e3;
}

.upload-icon {
    cursor: pointer;
    vertical-align: middle; 
    margin-right: 4px;  
    width: 20px;
    height: 15px;
}
/* --- UPLOAD-PAGE STYLE ---
   --- UPLOAD-PAGE STYLE ---
   --- UPLOAD-PAGE STYLE --- */


.upload-overlay {
    display: none; 
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99998; 
    background-color: rgba(0, 0, 0, 0.5); 
    align-items: center;
    justify-content: center; 
}










#errorName {
    color: #f02624;
    font-size: 14px;
    visibility: hidden;
}


#errorDesc {
    color: #f02624;
    font-size: 14px;
    visibility: hidden;
}


#errorCategory {
    color: #f02624;
    font-size: 14px;
    visibility: hidden;
}

#errorTags {
    color: #f02624;
    font-size: 14px;
    visibility: hidden;
}

#errorFile {
    color: #f02624;
    font-size: 14px;
    visibility: hidden;
}

#errorImage {
    color: #f02624;
    font-size: 14px;
    visibility: hidden;
}

#errorPrice {
    color: #f02624;
    font-size: 14px;
    visibility: hidden;
}

#image_row_1 {
    display: none;
    justify-content:space-between;
    padding: 10px 10px 5px 10px
}

#image_row_2 {
    display: none;
    justify-content:space-between;
    padding: 5px 10px 10px 10px
}


 .categories_form__input option {
    padding:  7px 12px;
    cursor: pointer;
}

.categories_form__input option:hover {
    background-color:  #f2f2f2;
    border-radius: 5px;
}



.upload-form__title {
    padding: 18px 0 0 0;
    
} 


.upload-form__container {
    background: #fff;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    width: 70%;
}
.upload__input {
    width: 100%;
    margin-top: 4px;
    outline: none;
    height: 40px;
    font-size: 16px;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    padding-left: 10px;
    color: #333;
    
}

.upload__input__description{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 20px;
    outline: none;
    resize: none;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    padding-top: 7px;
    padding-left: 10px;
    margin-top: 6px;
    width: 100%;
    height: 112px;
}

.upload_custom-checkbox {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-right: 5px;
}

.upload_custom-checkbox input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
    position: relative;
}

.upload_custom-checkbox input[type="checkbox"]:checked::before {
    content: "\2713";
    color: #767676;
    position: absolute;
    left: -1px;
    top: -6px;
    font-size: 28px;
    font-weight: bold;
}




.upload_price_input::-webkit-inner-spin-button,
.upload_price_input::-webkit-outer-spin-button {
    display: none; 
}

.upload_price_input {
    -moz-appearance: textfield; 
    -webkit-appearance: none;   
    padding: 5px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    width: 50px;
}
.upload_hint {
    padding: 5px;
    font-style: italic;
    color: #767676;
    font-size: 14px;
}
.upload_price_input{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 20px;
    outline: none;
    resize: none;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    padding-top: 7px;
    padding-left: 10px;
    margin-top: 6px;
    height: 25px;
    width: 50px;
}
.upload_price_flex{
    margin-top: 10px;
    padding: 0px 10px 6px 10px;
    display: flex;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
}
.upload__input__tags {
    overflow-y: hidden;
    margin-top: 11px;
    margin-left: 10px;
    margin-right: 3px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    max-height: 18px;
    min-width: 110px;
    font-size: 16px;
    
    border: 0px solid transparent;
    color: #333;
    resize: none;
}
.tag_cross {
    height: 20px;
    width: 20px;
    background-image: url(../icons/close-ring.svg);
    background-size: cover;
    cursor: pointer;
    
}
.upload-form__block{
    padding-right: 20px;
    width: 50%;
}


#fileTableBlock {
    display: none;
}
.file-table_empty {
    display: none;
    font-style: italic;
    padding-top: 10px;
    padding-left: 10px;

}

#editFileTable {
    max-height: 300px; 
    overflow-y: auto;  
}



.file-table-container {
    margin-top: 15px;
    border-radius: 7px; 
    overflow: hidden; 
}

.file-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 10px;
}

.file-table th, .file-table td {
    border: 0.5px solid #ccc; 
    padding: 6px;
    text-align: left;
}


.file-table th:first-child {
    border-top-left-radius: 7px;
}

.file-table th:last-child {
    border-top-right-radius: 7px;
}

.file-table tr:last-child td:first-child {
    border-bottom-left-radius: 7px;
}

.file-table tr:last-child td:last-child {
    border-bottom-right-radius: 7px;
}


.file-table th {
    background-color: #f4f4f4;
}

.file-table th:nth-child(1), .file-table td:nth-child(1) {
    width: 200px; 
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.file-table th:nth-child(3), .file-table td:nth-child(3) {
    width: 150px; 
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.new-file {
    color: rgb(3, 73, 186);          
    font-weight: bold;     
    margin-left: 5px;     
    font-size: 0.9em;   
}

.delete-file-btn {
    background-color: #bcbcbc; 
    color: white;  
    border: none; 
    border-radius: 5px; 
    padding: 4px 7px;  
    width: 100%;
    cursor: pointer; 
    transition: background-color 0.3s ease; 
}

.delete-file-btn:hover {
    background-color: #7b2424; 
}

.delete-file-btn:focus {
    outline: none;  
}

.file-properties-select {
    appearance: none;  
    -webkit-appearance: none;
    -moz-appearance: none;  
    width: 100%;  
    
    padding: 2px; 
    border: 1px solid #fff;  
    border-radius: 5px;  
    background-color: #fff; 
    font-size: 16px;  
    box-sizing: border-box;  
}


.file-properties-select:focus {
    outline: none;
    border-color: #4a90e2;  
}

.file-properties-select::-ms-expand {
    display: none;  
}

.upload-form__file {
    display: block;
    padding-left: 20px;
    width: 50%;
    height: 100%;
}

.upload-form__file_upload_space {
    position: relative;
    margin-top: 4px;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    border-color: #e0e0e0;
    
}

.upload_image_container {
    margin-top: 4px;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    border-color: #e0e0e0;
}

.upload_image_container:hover {
    cursor: pointer;
    background-color: #fafafa;
}

.upload-form__file_upload_space:hover {
    cursor: pointer;
    background-color: #fafafa;
}
.upload-form__file_upload_space.dragover {
    background-color: #fafafa;
    border: 1px dashed #ccc; 
}

.upload-form__image_upload_space {
    justify-content: space-between;
    position: relative;
    margin-top: 4px;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    border-color: #e0e0e0;
    display: flex;
    flex-wrap: wrap;
}

.upload-form__image_upload_space:hover {
    cursor: pointer;
    background-color: #fafafa;
}
.upload-form__image_upload_space.dragover {
    background-color: #fafafa;
    border: 1px dashed #ccc; 
}

.image_preview_actions_block{
    display: flex; 
    justify-content:space-between;
    padding-top: 14%;
}

.upload-file__input {
    display: none;
}

.upload-image__input {
    display: none;
}

.image_upload_icon {
    display: block;
    margin: 0 auto; 
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    height: 80px;
    width: 80px
}

.file_upload_icon {
    display: block;
    margin: 0 auto; 
    position: absolute;
    top: 40%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    height: 50px;
    width: 50px
}



.upload_file_label {
    cursor: pointer;
    color: #9f9fa2; 
    display: flex;
    justify-content: center;
    align-items: end;
    font-size: 18px;
    height: 50%;
    padding-top: 10%;
}



.upload_image_label {
    cursor: pointer;
    color: #9f9fa2; 
    display: flex;
    justify-content: center;
    align-items: end;
    font-size: 18px;
    height: 100%;
    width: 100%;
}





.upload-form__entered_tags {
    flex-wrap: wrap;
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    margin-top: 5px;
    min-height: 44px;
    max-width: 100%;
}

.upload-form__entered_tags_container {
    display: flex;
    flex-wrap: wrap;
}

.one_tag {
    cursor: pointer;
    display: flex;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    padding: 5px;
    background-color: #fafafa;
    min-width: auto;
}

.upload-form__content {
    display: block;
}

.upload-form__content h4{
    padding-left: 10px;
}
.upload-form__fields {
    display: block;
}
.upload-form__flex{
    justify-content: space-between;
    display: flex;
}
.upload-form__field {
    overflow-x: auto;
}
.upload__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
    
}

.upload-form__upload-button{
    display: block;
    height: 35px;
    width: 100px;
    background-color: #619bff;
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 18px;
    border-radius: 7px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e0e0e0;
}
.upload-form__upload-button:hover {
    cursor: pointer;
    background-color: #4589ff;
}
.categories_form__input {
    width: 100%;
    margin-top: 4px;
    outline: none;
    height: 40px;
    font-size: 16px;
  
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    padding-left: 10px;
    color: #333;
    z-index: 999;
}
.categories_form__input:focus {
    outline: none;
}
.categories_container {
    position: relative;
    z-index: 997;
}

.categories__title {
    margin-top: 15px;
}

.categories__title a {
    text-decoration: none;
    color: inherit;
}

.search_auto_res {
    display: none;
    margin-top: 2px;
    border: 1px solid #e0e0e0;
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2px;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.search_auto_res ul {
    display: none;
    list-style-type: none;
    padding: 0;
}
.search_auto_res ul li {
    padding:  7px 12px;
    cursor: pointer;
}
.search_auto_res ul li:hover {
    background-color:  #f2f2f2;
    border-radius: 5px;
}

/* 
    --- Auth-reaired STYLE ---
    --- Auth-reaired STYLE ---
    --- Auth-reaired STYLE --- 
*/

 .auth-alert {
    font-size: 2em;
    font-weight: bold;
    color: #333;
}

.action__links {
    margin-top: 20px;
    
}
.action__links:hover {
    color: #000000;
    text-decoration: underline;
}
.action_link__text {
    

    text-decoration: none;

    color: #333;
}


/* 
    --- DOCUMENTATION STYLE ---
    --- DOCUMENTATION STYLE ---
    --- DOCUMENTATION STYLE ---
*/


.document__topics{
    width: 20%;
    padding: 20px;
}

.docum_title{
    padding-top: 10px;
    width: 100%;
    text-align: center;
}

.docum_sub_title{
    padding-top: 30px;
    

}

.docum_parag{
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 24px;
}

.docum_code{
    background-color: #eaeaea;

}


table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
    padding-right: 15px;
}
td {
    padding-right: 15px;
}



.sub-topic {
    padding-left: 20px;
}

.sub-topic li{
    padding-top: 5px;
    padding-bottom: 5px;
}

.main-topic {
    padding-top: 5px;
    padding-bottom: 10px;
    font-weight: bold;
    list-style-type: none;
    cursor: pointer;
}

.main-topic li{
    font-weight: 300;
    list-style-type: disc;
    cursor: pointer;
}

.docum_link {
    color: inherit; 
    text-decoration: underline; 
}



.document__topics_content{
    display: block;
    width: 100%;
    border-radius: 7px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.document__content_side{
    padding: 40px;
    width: 50%;
}

/* 
    --- LIBRARY STYLE ---
    --- LIBRARY STYLE ---
    --- LIBRARY STYLE ---
*/

.library_models {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
}

.library_models.list-view {
    flex-direction: column; 
}

.library_my_model {
    width: calc(25% - 10px); 
    margin: 5px;
}

.library_models.list-view .library_my_model {
    width: 100%; 
    margin: 10px 0;
}

.library_my_model {
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    background-color: e0e0e0;
}

.library_picture_block {
    max-height: 200px;
    width: 25%;
    overflow: hidden;
}

.library_picture {
    width: 100%;
    overflow: hidden;
}

.library_model_img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
}

.library_model_info {
    width: 70%;
    border-radius: 5px;
    padding: 10px;
    background-color: #ffffff;
}

.library_model_name {
    text-decoration: none;
    color: inherit;
}

.library_title {
    color: #1a1a1a;
    padding-bottom: 10px;
    text-decoration: none;
}

.library_model_category {
    margin-bottom: 5px;
}

.library_model_desc {
    margin-bottom: 5px;
}

.library_model_tags {
    display: flex;
    margin-bottom: 5px;
}

.library_tag {
    font-style: italic;
    color: #6e6e6e;
    text-decoration: underline;
    padding: 0 5px 0 5px;
}

.library_stats {
    display: flex;
    border-radius: 5px;
    padding: 3px;
    margin: 5px;
    border: 1px solid #f2f2f2;
    background-color: #fafafa;
}

.library_download_icon {
    padding-top: 4px;
    margin-bottom: 2px;
    height: 20px;
    width: 20px;
}

.library_model_date_info {
    padding: 3px;
    margin: 5px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
}

.library_model_upload_date {
    font-style: italic;
    color: #999999;
    font-size: 0.9em;
    padding-top: 3px;
}























.library_tags_search {
    margin: 5px 10px 5px 0px;
    width: 200px;
    height: 30px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    padding: 5px 40px;
    color: #333;
    z-index: 999;
}

.library_search {
    margin: 5px 10px 5px 0px;
    width: 200px;
    height: 30px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    padding: 5px 40px;
    color: #333;
    z-index: 999;
}
.library_search:focus {
    outline: 1.5px solid #cbcbcb;
}

.library_filter {
    padding-bottom: 15px;
}
.library_filter ul {
    list-style-type: none;
    padding-left: 0;
    padding: 5px 10px 15px 10px;
}

.library_new_collection_arrea{
    display: block;
    height: 400px;
    width: 100%;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
}

.library_new_collection_arrea:focus {
        outline: 1.5px solid #cbcbcb;
    }

.library_navigation{
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    width: 15%;
    padding: 10px;

}
.library_models_container{
    width: 85%;
    padding-left: 20px;
}

.library_active_filters {
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    margin-bottom: 10px;
    padding: 5px;
    width: 100%;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    position: relative;
}
.library_display_style {
    margin-left: auto;
    display: flex;
}
.library_display_style a {
    width: 25px;
    height: 25px;
    transition: width 0.3s ease, height 0.3s ease;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 5px;
    
}
.library_main_filter_drop {
    height: 25px;
    width: 25px;
    padding: 5px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size:75%;
    background-position: center;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.1s ease;
}
.library_sub_filter_drop {
    height: 20px;
    width: 20px;
    padding: 5px;
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size:75%;
    background-position: center;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.1s ease;

}
.library_cancel_filters {
    display: none;
    border: none;
    width: 100%;
    border-radius: 7px;
    text-align: center;
    background-color: #e0e0e0;
    color: #333; 
    padding: 5px 10px; 
    cursor: pointer;
    margin-bottom: 5px;
    margin-right: 5px;
    transition: background-color 0.3s, color 0.3s; 
    
}

.library_cancel_filters:hover {
    background-color: #b0b0b0; 
    color: #fff; 
}

.library_sub_filter{
    padding-left: 10px;
    padding-right: 20px;
}

#searchDrop {
    cursor: pointer;
}
#searchDiv {
    display: none;
}

#tagDrop {
    cursor: pointer;
}
#tagDiv {
    display: none;
}

#typeDrop {
    padding-bottom: 5px;
    cursor: pointer;
}
#typeDrop {
    cursor: pointer;
}
#typeDiv {
    display: none;
}
#categoryDrop {
    cursor: pointer;
}
#categoryDiv {
    display: none;
}
#architectureDrop {
    cursor: pointer;
}
#architectureDiv {
    display: none;
}
#animalsDrop {
    cursor: pointer;
}
#animalsDiv {
    display: none;
}
#artDrop {
    cursor: pointer;
}
#artDiv {
    display: none;
}

#charactersDrop {
    cursor: pointer;
}
#charactersDiv {
    display: none;
}
#designDrop {
    cursor: pointer;
}
#designDiv {
    display: none;
}
#clothesDrop{
    cursor: pointer;
}
#clothesDiv{
    display: none;
}
#electronicsDrop {
    cursor: pointer;
}
#electronicsDiv{
    display: none;
}
#foodDrop {
    cursor: pointer;
}
#foodDiv {
    display: none;
}
#natureDrop {
    cursor: pointer;
}
#natureDiv {
    display: none;
}
#transportDrop {
    cursor: pointer;
}
#transportDiv {
    display: none;
}
#gamesDrop {
    cursor: pointer;
}
#gamesDiv {
    display: none;
}


#collecDrop {
    cursor: pointer;
}

#collecDiv {
    display: none;
}

#headerHome {
    display: none;
}


.settings__change_block {
    margin: 20px;
    /* display: flex; */
}

.settings__change_block input {
    width: 20%;
}

.settings__change_block #bio {
    width: 35%;
    height: 100px;
}

.settings__change_block p {
    font-style: italic;
    color: #606060;
    padding: 10px 10px 10px 10px;
}
.settings__change_block button {
    cursor: pointer;
    background: #ededed;
    border: 1px solid #979797;
    border-radius: 7px;
    color: #333;
    text-decoration: none;
    justify-content: space-between;
    transition: background 0.2s ease, color 0.2s ease;
    padding: 10px 10px 10px 10px;
}


.settings__change_block button:hover {
    background: #c5c5c5;
}


.settings_buttons {
    display: flex;
    /* gap: 10px; */
}

.password_drop_text {
    display: none;
}





@media (max-width: 491px){
    .container {
        margin-top: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .header__logo {
        display: none;
    }
    .header {
        padding: 10px;
        justify-content:space-between
    }

    .form__input{
        width: 240px;
    }

    .main__model {
        width: 40%;
        height: 184px;
    }

    .main__title {
        margin-top: 0;
    }

    .main_bottons_div{
        width: 250px;
      
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
      
    }

    .main__quote {
        margin-bottom: 20px;
    }

    .input_error_msg{
        max-width: 240px;
    }

    .one_card_container {
        width: calc(33% - 5px);
    }

    .upload-form__container{
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;
    } 

    #headerModelUpload{
      display: none;
    }


    .upload_image_text{ 
       display: none;
    }

    .upload_hint{
       display: none;
    }
  

    .upload_file_label{
        padding-top: 17%;
        padding-left: 2%;
    }

    .model-page__main__container{
        margin: 50px 3% 20px 3%;
;       width: auto;
    }


    #headerHome {
    display: block;
    }

    .upload-form__field{
        padding-bottom: 10px;
    }


    .explore__one_card_container {
    display: block;
    width: 250px;
    }


    
    .sidebar-filter__container {
    float: left;
    width: 10%;
    margin: 40px 40px 5px 15px;
    }

    .margin_flex{
        margin-top: 20px;
    }

    .model-page__comments__container {
    padding: 20px;
    border-radius: 7px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: 94%;
    margin: 0 10px 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;

    }

    #commentsContainer {
    width: 100%;
    }

    .user-page_ballance_container{
	display: none;
    }

    .user-page__avatar__container {
        width: 100px; 
        height: 100px; 
    }

.user-page__avatar__square {
    position: relative;
    width: 100px;
    height: 100px;
}

.user-page__profile-info__container {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.user-page__profile-avatar {
    border-radius: 50%; 
    width: 150px;
    height: 150px;
    object-fit: cover; 
    object-position: center; 
    display: block; 
}

.user-page__profile-avatar {
   
    width: 100px;
    height: 100px;
}

.user-page__upload-button {
    width: 110px;
    height: 40px;
}



.file_upload_icon {
    height: 20px;
    top: 46%;

}

.upload-form__image_upload_space {
    flex-direction: column;
}

.image_preview_block{
    height: 30%;
    width: 48%;   
}

.add_image_block {
    height: 30%;
    width: 48%;
}

.main_image_text {
    display: none;
}

.upload_file_text{
display: none
}

.add_image_button {
    width: 70px;
    height: 115px;
}

.add_image_text {
    display: none;
}

.user_page__stats {
    height: 30px;
}

.user_page__picture_block {
    
    width: 25%;
}

.user_page__model_date_info {

    display: none;
}

        .upload__center {
      
         width: 100%;
        margin-top: 40px; 
        padding: 0px;

    }


}



.pi_logo {
    width: 130px;
    height: 130px;
    position: absolute;
    top: 60px; 
    right: -15px; 
}

.pi_logo img {
    width: 130px;
    height: 130px;
    object-fit: contain; 
    object-position: center; 
}

.pi_stripe {
    position: absolute;
    width: 150px; 
    height: 30px; 
    background-color: #6a1b9a; 
    transform: rotate(15deg); 
    transform-origin: top left; 
    top: 80px; 
    right: -10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1; 
}

.pi_stripe span {
    color: #f6b133;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}