<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
}
/*
body {
    margin: 0px;
    font-family: 'Muli', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    min-width: 310px;
    color: #333;
}
*/
a{
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #FF7F00;
}
/*
input {
    font-family: 'Muli', Roboto, sans-serif;
    background-color: #fff;
    border: 0;
    font-size: 15px;
    padding: 5px 10px;
    color: #000;
    width: 100%;
}
*/
input {
    border-radius: 0;
  }
  
input[type="search"] {
    -webkit-appearance: none;
}

img {
    vertical-align: top;
    max-width: 100%;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */



.site-wrapper {
    max-width: 1500px;
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
}

.site-page {
    padding: 30px 0 100px;
}

.site-page.bg-gray {
    background-color: #EEEEEE;
}

.site_title {
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    padding: 20px 0 40px;
}

.site_title_img {
    display: inline-block;
    position: relative;
    padding-left: 60px;
}

.site_title_img_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.swiper-pagination {
    bottom: 30px;
    width: 100%;
}

.swiper-pagination-bullet {
    margin: 0 10px;
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff7f00;
}

.btn {
    background-color: #ff7f00;
    color: #fff;
    padding: 8px 30px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    user-select: none;
}

.btn:hover {
    color: #fff !important;
    background-color: #FF6000 !important;  /* fca650 */
}

.btn.btn_white {
    background-color: #fff;
    color: #333;
    border: 1px solid #ff7f00;
}

.btn.btn_white:hover {
    color: #fff !important;
    background-color: #fca650 !important;
}

.weight-normal {
    font-weight: 400;
}

.weight-black {
    font-weight: 900;
}

#alert_box {
    position: fixed;
    bottom: 450px;
    left: 50%;
    max-width: 80%;
    width: 400px;
    text-align: center;
    transform: translate(-50%, 0);
    background-color: #ff7d00;
    padding: 10px 20px;
    z-index: 9999;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s opacity cubic-bezier(.215,.61,.355,1),  0.5s visibility cubic-bezier(.215,.61,.355,1),  0.5s top cubic-bezier(.215,.61,.355,1);
}

#alert_box.active {
    opacity: 1;
    visibility: visible;
}


#alert_box2 {
    position: fixed;
    bottom: 200px;
    left: 50%;
    max-width: 80%;
    width: 400px;
    text-align: left;
    transform: translate(-50%, 0);
    border: 1px solid #ff7d00;
	background: #FFF;
    padding: 20px 50px;
    z-index: 10000;
    color: #333;
   visibility: hidden;
  
   
   /* transition: 0.5s opacity cubic-bezier(.215,.61,.355,1),  0.5s visibility cubic-bezier(.215,.61,.355,1),  0.5s top cubic-bezier(.215,.61,.355,1);*/
}

#alert_box2.active {
    opacity: 1;
    visibility: visible;
}




#loading_wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.5);
}

#loading_wrapper.active {
    display: flex;
}


#loading_wrapper2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.5);
}

#loading_wrapper2.active {
    display: flex;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ff7f00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

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




@media only screen and (max-width: 767px) { 
    body {
        font-size: 15px;
    }
    .site-page {
        padding: 30px 0 50px;
    }
    .site-wrapper {
        padding: 0 20px;
    }
    .site_title {
        font-size: 20px;
        padding: 0px 0 30px;
    }
    .site_title_img {
        padding-left: 40px;
    }
    .site_title_img_logo {
        width: 30px;
    }
    .swiper-pagination {
        bottom: -30px;
    }
    .swiper-pagination-bullet {
        background: #CCCCCC;
    }
    .btn {
        padding: 5px 20px;
    }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */

.photo_gallery_list {
    display: none;
}

.photo_gallery_list.loaded {
    display: block;
}

.photo_gallery_list_loader {
    text-align: center;
    padding: 200px 0;
}

.photo_gallery_list_loader .loader {
    margin: auto;
}

.photo_gallery_list_loader.loaded {
    display: none;
}

.photo_gallery_overlay {
    position: absolute;
    padding: 15px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.1s opacity;
    z-index: 2;
}

.photo_gallery_overlay, .photo_gallery_item.overlay_stay .photo_gallery_overlay {
    background-color: rgba(0,0,0,0.5);
}

.photo_gallery_item {
    position: relative;
}

.photo_gallery_img_wrapper {
    position: relative;
}

.photo_gallery_loader {
    text-align: center;
    padding: 60px 0;
    border: 1px solid #CCC;
}

.photo_gallery_loader .loader {
    margin: auto;
}

.photo_gallery_img_wrapper.loaded .photo_gallery_loader {
    display: none;
}

.photo_gallery_img {
    width: 0;
    height: 0;
    display: none;
}

.photo_gallery_img_wrapper.loaded .photo_gallery_img {
    width: 100%;
    height: auto;
    display: inline-block;
}

.photo_gallery_item .photo_gallery_overlay:hover, .photo_gallery_item.overlay_stay .photo_gallery_overlay:hover {
    opacity: 1;
}

.photo_gallery_close {
    position: absolute;
    top: 8px;
    right: 0;
    width: 20px;
    height: 20px;
    margin: 10px;
    cursor: pointer;
}

.photo_gallery_close span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position:absolute;
    left: 0;
    top: 50%;
}

.photo_gallery_close span:nth-child(1) {
    transform: rotate(45deg);
}

.photo_gallery_close span:nth-child(2) {
    transform: rotate(-45deg);

}

.photo_gallery_title {
    color: #fff;
    max-height: calc(100% - 40px);
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.photo_gallery_title.right_close {
    padding-right: 20px;
}

.photo_gallery_premium {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 15px;
    font-weight: 900;
    font-style: italic;
    color: #ff7d00;
}

.photo_gallery_nav {
    text-align: right;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 10px 5px 0;
}

.photo_gallery_btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff7f00;
    display: inline-block;
    margin-left: 5px;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.photo_gallery_btn:hover {
    background-color: #fca650;
}

.photo_gallery_btn.photo_add_cart {
    background-image: url(../images/cart_white.png);
}

.photo_gallery_btn.photo_download {
    background-image: url(../images/download_white.png);
    background-size: 40%;
}

.photo_gallery_btn.photo_zoom {
    background-image: url(../images/zoom_white.png);
    background-size: 50%;
}

.photo_gallery_pagination {
    padding-top: 70px;
}

.photo_gallery_alert {
    display: none;
    position: absolute;
    top: 50px;
    right: 13px;
    padding: 20px;
    width: 300px;
    background-color: #fff;
    z-index: 3;
}

.photo_gallery_alert.align_left {
    left: 0;
    right: auto;
}

.photo_gallery_alert.active {
    display: block;
}

.photo_gallery_alert_title {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    font-style: italic;
}

.photo_gallery_alert_nav {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.photo_gallery_alert_nav .btn {
    padding: 3px 23px;
}

.pagination {
    padding: 0;
    margin: 0;
    text-align: center;
    display: block;
}

.pagination li {
    display: inline-block;
    font-size: 21px;
    font-weight: 400;
}

.pagination li.arrow {
    font-size: 16px;
    }

.pagination li a {
    padding: 5px 14px;
    color: #666666;
    letter-spacing: 0px;
}

.pagination li a:hover, .pagination li.active a {
    color: #ff7f00;
}

.photo_gallery_mobile_title {
    display: none;
    font-size: 15px;
    text-align: center;
    padding: 10px 0 20px;
}

.index-remind {
    font-size: 15px;
    font-style: italic;
    padding-top: 30px;
}

.index_slider {
    height: 630px;
    position: relative;
    margin: auto;
    max-width: 1920px;
    margin-bottom: 60px;
}

.slider_bg {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*box-shadow: inset 0 -140px 110px -100px #000;*/

    /*box-shadow: inset 0 -240px 70px -180px rgba(0, 0, 0, 0.75);*/
	box-shadow: inset 0 -330px 70px -180px rgba(0, 0, 0, 0.4);
}

.index_slider .swiper-slide {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-end;
}

.slider_bg {
    position: absolute;
    z-index: -1;
}

.slider_text {
    opacity: 0;
    color: #FFF;
    width: 100%;
    max-width: 700px;
    text-align: center;
    font-weight: 800;
    font-size: 26pt;  
    letter-spacing: 1px;
    line-height: 1.1;
    font-style: italic;
    text-shadow: 3px 3px black;
    margin-bottom: 60px;
}

.slider_text.animate__animated {
    opacity: 1;
}

.index_slider_logoXX {
    position: absolute;
    z-index: 2;
    top: 65px; /* 80px; */
    left: -30px; /* 90px; */
    /*width: 295px;*/
    text-align: center;
}

.index_slider_logo {
    position: absolute;
    z-index: 2;
    top: 30px; /* 80px; */
    left: -30px; /* 90px; */
    /*width: 295px;*/
    text-align: center;
}

.index_slider_ust {
    position: absolute;
    z-index: 2;
    right: 60px;
    top: 30px;
    width: 160px;
}

.index_slider_loginX {
    position: absolute;
    z-index: 2;
   /* width: 170px;*/
    top: 255px; /* 280 */
    left: 20px; /* 150 */
    letter-spacing: 4px;
}

.index_slider_login {
    position: absolute;
    z-index: 2;
   /* width: 170px;*/
    top: 220px; /* 280 */
    left: 20px; /* 150 */
    letter-spacing: 4px;
}


.index_slider_login .btn {
    width: 100%;
    text-align: center;
}

.photo_cart_detail {
    display: flex;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 2px solid #fff;
}

.photo_cart_detail_left {
    width: calc(100% - 360px);
    display: flex;
}

.photo_cart_detail_right {
    width: 360px;
    flex-flow: column;
    justify-content: space-between;
}

.photo_cart_detail_desc {
    width: 100%;
    font-size: 15px;
    max-width: 375px;	/* 450 */
	padding-bottom:40px;
}

.photo_cart_btn {
    width: 100%;
    max-width: 595px;	/*400*/
   /* padding: 0 20px;
    margin-left: 8%;*/
}

.photo_cart_board {
    width: 100%;
    border: 1px solid #ff7d00;
    background-color: #fff;
    padding: 25px 15px;
}

.photo_cart_board_title {
    text-align: right;
    font-weight: 400;
}

.photo_cart_board_item {
    font-weight: 400;
    display: flex;
    margin: 10px 0;
    font-size: 19px;
}

.photo_cart_board_item_qty {
    width: 80px;
    font-weight: 700;
    text-align: right;
    padding-right: 20px;
}

.photo_cart_board_item_name {
    width: calc(100% - 80px);
}

.photo_cart_board_total {
    font-weight: 400;
    display: flex;
    padding-top: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-top: 1px solid #ccc;
    font-size: 19px;
}

.photo_cart_board_item_money {
    width: 80px;
    font-weight: 700;
    text-align: right;
}

.photo_cart_nav .btn {
    width: 100%;
}

.photo_cart_nav .btn.btn.btn_white {
    border: none;
    color: #ff7d00;
}

.photo_cart_detail_right .photo_cart_nav {
    margin-top: 30px;
}

@media only screen and (max-width: 1400px) { 
    .photo_cart_btn {
        margin-left: 0;
    }
}


@media only screen and (max-width: 1050px) { 
	.slider_text {
	
    font-weight: 800;
    font-size: 22pt;
    max-width: 600px;
    line-height: 1.1;
    font-style: italic;
    text-shadow: 3px 3px black;
    margin-bottom: 60px;
	}
}
	

@media only screen and (max-width: 960px) { 
    .index_slider {
        height: 450px;
        margin-bottom: 30px;
    }
    .index_slider_login {
        width: 140px;
        top: 220px;
        left: 115px;
    }
    .index_slider_logo {
        top: 50px;
        left: 65px;
        /*width: 240px;*/
    }
    .photo_cart_detail_left {
        padding-right: 20px;
        flex-flow: column;
       /* justify-content: space-between;*/
    }
    
    .photo_cart_btn {
        padding: 0;
    }
}

@media only screen and (max-width: 767px) { 
    .index_slider {
        height: 230px;
    }
    
    .index_slider_logo {
       /* width: 110px;*/
        top: 15px;
        left: 20px;
    }
	
	.index_slider_logo img {
		height: 50px;
	}
    
    .index_slider_ust {
        display: none;
    }
    
    .index_slider_login {
        width: 120px;
        top: 160px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .photo_cart_detail {
        display: block;
    }
    
    .photo_cart_detail_left {
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .photo_cart_detail_right {
        width: 100%;
    }
    
    .photo_cart_detail_desc {
        max-width: 100%;
    }
    
    .photo_cart_btn {
        max-width: 100%;
        padding-top: 20px;
    }
    .photo_gallery_alert {
        width: 280px;
    }
    .slider_bg {
        box-shadow: inherit;
		box-shadow: inset 0 -240px 90px -210px rgba(0, 0, 0, 0.4);
    }
	
	
	.slider_text {
	display: none;
	}

}

@media only screen and (max-width: 520px) { 
    .photo_gallery_pagination {
        padding-top: 20px;
    }
    .photo_gallery_overlay {
        opacity: 1;
        background-color: transparent;
    }
    .photo_gallery_title {
        display: none;
    }
    .photo_gallery_item.overlay_stay .photo_gallery_title {
        display: block;
    }
    .photo_gallery_mobile_title {
        display: block;
    }
}




.orange_bold {
		font-weight: bold;
		color: #FF7F00;
}


.pswp__scroll-wrap {
    max-width: 1080px;
    left: 50%;
    transform: translate(-50%, 0);
}

.pswp__top-bar {
    background-color: transparent;
    display: none;
}

.pswp__ui--idle .pswp__top-bar {
    opacity: 1;
}

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: visible !important;
}

.pswp__button--arrow--left:before, 
.pswp__button--arrow--right:before {
    background-color: transparent;
    background-size: contain;
    background-position: center;
    height: 40px;
    width: 20px;
}

.pswp__button--arrow--right:before {
    right: 20px;
    background-image: url(../images/right.png) !important;
}

.pswp__button--arrow--left:before {
    left: 20px;
    background-image: url(../images/left.png) !important;
}

.pswp__ui--idle .pswp__button--arrow--left, .pswp__ui--idle .pswp__button--arrow--right {
    opacity: 1;
}

.pswp.pswp--open .pswp__bg {
    opacity: 0.8 !important;
}

.pswp__item-img_center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.pswp__item-img_center-wrapper::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
.pswp__item-img_center-wrapper::-webkit-scrollbar-track {
    background: transparent; 
}
   
  /* Handle */
.pswp__item-img_center-wrapper::-webkit-scrollbar-thumb {
    background: #FFF; 
}
  
  /* Handle on hover */
.pswp__item-img_center-wrapper::-webkit-scrollbar-thumb:hover {
    background: #FFF; 
}


.pswp__item-img_center {
    padding: 30px 90px;
    max-width: 1080px;
    margin: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) { 
    .pswp__item-img_center {
        padding: 30px 20px;
    }
}

.pswp__item-img_center-name {
    display: inline-block;
    color: #FFF;
    margin-bottom: 20px;
    align-self: flex-start;
    padding-right: 44px;
}

.pswp__item-img_center-close {
    background: url(../plugins/PhotoSwipe/default-skin/default-skin.png) 0 0 no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px;
    background-position: 0 -44px;
    position: absolute;
    right: 75px;
    top: 20px;
    cursor: pointer;
}

.pswp__item-img_center-img {
    /* width: 100%;
    height: 100%; */
    max-width: 100%;
    text-align: center;
    position: relative;
}

.pswp__item-img_center-img img {
    max-width: 100%;
    max-height: 100%;
    max-height: calc(100vh - 110px);
}

.pswp__item-img_center-img .photo_gallery_btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

@media only screen and (max-width: 767px) { 
    .pswp__item-img_center-name {
        margin-bottom: 15px;
    }
    .pswp__item-img_center-close {
        right: 5px;
        top: 25px;
        height: 35px;
        background-position: 0 -48px;
    }
	
}




@media only screen and (min-width: 768px) and (max-width: 1050px)  {
	.index_slider_logo {
    position: absolute;
    z-index: 2;
  
    left: 45px; /* 90px; */
	top: 30px;
    /*width: 295px;*/
    text-align: center;
	}
	
	.index_slider_logo img { 
		height: 80px;
	}
	
	
	.index_slider_login {
    position: absolute;
    z-index: 2;
   /* width: 170px;*/
 
    left: 45px; /* 150 */
	top: 135px;
    letter-spacing: 4px;
	}
	
	
	.slider_bg {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*box-shadow: inset 0 -140px 110px -100px #000;*/

    /*box-shadow: inset 0 -240px 70px -180px rgba(0, 0, 0, 0.75);*/
	box-shadow: inset 0 -330px 90px -180px rgba(0, 0, 0, 0.4);
	}

}





@media only screen and (min-width: 1051px) and (max-width: 1730px)  {
	.index_slider_logo {
    position: absolute;
    z-index: 2;
  
    left: 50px; /* 90px; */
    /*width: 295px;*/
    text-align: center;
	}
	
	
	.index_slider_login {
    position: absolute;
    z-index: 2;
   /* width: 170px;*/
 
    left: 100px; /* 150 */
    letter-spacing: 4px;
}
}



.pswp__button--arrow--right:hover::before {
    background-image: url(../images/right2.png) !important;
}

.pswp__button--arrow--left:hover::before {
    background-image: url(../images/left2.png) !important;
}
/*
.pswp__caption, .pswp__top-bar, .pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
    
	
	
}
*/

/*
@media only screen and (max-width: 1024px) { 
   .photo_gallery_overlay {
        opacity: 1;
        background-color: transparent;
    }
}
*/
/* .pswp__item-img_center-close {
    position: absolute;
    top: 8px;
    right: 0;
    width: 20px;
    height: 20px;
    margin: 10px;
    cursor: pointer;
}

.pswp__item-img_center-close span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
}

.pswp__item-img_center-close span:nth-child(1) {
    transform: rotate(45deg);
}

.pswp__item-img_center-close span:nth-child(2) {
    transform: rotate(-45deg);
} */</pre></body></html>