@charset "utf-8";
/*
/*	Copyright (c) 2022 Frenify
/*	Author: Frenify
/*	This file is made for CURRENT TEMPLATE
/*


	List of CSS codes:
	
	01) Base
	02) Container
	03) Full Link
	04) Site Structure
	05) Desktop Header
	06) Same Item: Search field
	07) Mega Menu
	08) Mobile Menu
	09) Discover Section (Home #1)
	10) Similar: Main Button
	11) Similar: Like Button (without counter)
	12) Similar: Like Button (with counter)
	13) Similar: Sliders (Home #1)
	14) Similar: Action Box (used in single item)
	15) Modalbox
	16) Similar: Collection Item
	17) Gallery 2-1
	18) Gallery 1-1-2
	19) Similar: Category Item
	20) Similar: Artist Item
	21) Similar: Follow Button
	22) Blog Section
	23) Footer
	24) Magic Cursor
	25) Selling Page
	26) Icon List (used in Selling page)
	27) Similar: Single Item
	28) Author Information Box (used in author page)
	29) Similar: Mini Items (used for following and followers modalbox)
	30) Author Tab List
	31) Searchpanel in author page
	32) Left Tab Filter
	33) Activitiy Table
	34) Similar: Short Item
	35) Add Item Page
	36) Add button
	37) Sign In & Sign Up Form Pages
	38) Collection Information
	39) Collection Single Page
	40) Boxed Counter
	41) Hiddenable Text
	42) Chart
	43) Blog Page
	44) Pagination
	45) Discover Page
	46) Blog Single
	47) Author Information Box (used for single page of the blog)
	48) Tags
	49) Previous & Next Box
	50) Ranking Page
	51) PRODUCT Page
	52) Accordion
	53) Similar: List
	54) Trader Item
	55) 404 PAGE
	56) Contact Page
	57) Flickity Slider
	58) Responsive
	

/*------------------------------------------------------------------*/
/*	01) Base
/*------------------------------------------------------------------*/
:root{
	--main-color: #31b13a;
	--heading-color: #222;
	--body-color: #666;
	--body-extra-color: #777;
	--body-background-color: #fff;
	--heading-font-family: 'Heebo', sans-serif;
	--body-font-family: 'Heebo', sans-serif;
	--extra-font-family: 'Open Sans', sans-serif;
}
[data-skin="dark"]{
	--heading-color: #ccc;
	--body-color: #888;
	--body-background-color: #191b21;
}
html{
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
}
*:after,
*:before,
*{
	box-sizing: border-box;
}
body{
	font-family: var(--body-font-family);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.3333;
	font-weight: 400;
	color: var(--body-color);
	position: relative;
	word-break: break-word;
	background-color: var(--body-background-color);
}
section,
div[class^="anor_fn_"]{
	width: 100%;
	clear: both;
}
.fn__svg{
	fill: currentcolor;
	width: 18px;
	height: 18px;
	opacity: 0;
}
.replaced-svg{
	opacity: 1;
}
p{
	letter-spacing: 0;
}
h1, h2, h3, h4, h5, h6{
	color: var(--heading-color);
	font-family: var(--heading-font-family);
	line-height: 1.22;
	letter-spacing: 0;
}
h1>a, h2>a, h3>a, h4>a, h5>a, h6>a{
	text-decoration: none;
	color: var(--heading-color);
}
h1>a:hover, h2>a:hover, h3>a:hover, h4>a:hover, h5>a:hover, h6>a:hover{
	color: var(--main-color);
}
table{
	color: var(--body-color);
}
/* Base: Preloader */
#preloader{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
}
#preloader:before,
#preloader:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#preloader:after{
    left: auto;
    right: 0;
}
.preloaded:before,
.preloaded:after{
    -webkit-animation: preloadedzero 300ms ease-in-out 800ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 800ms forwards;
    animation: preloadedzero 300ms ease-in-out 800ms forwards;
}
@keyframes preloadedzero{
    0%{
        width: 50%;
    }
    100%{
        width: 0%;
    }
}

#preloader{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.preloaded .loader{
	opacity: 0;
}
#preloader .loader{
	position: relative;
	width: 20rem;
	height: 20rem;
	transition: all .3s ease;
}
#preloader .loader:before{
	z-index: 1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8.6956521739rem;
    height: 8.6956521739rem;
    background: #000;
    border-radius: 50%;
}
#preloader .box{
    position: absolute;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
}
#preloader .box::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0.1;
}
#preloader .box:nth-child(1){
	top: 0;
	left: 0;
}
#preloader .box:nth-child(1):before{
	top: 50%;
	left: 50%;
	background: #4185F3;
	animation: lightMe1 4s ease-out infinite normal;
}
#preloader .box:nth-child(2){
	top: 0;
	right: 0;
}
#preloader .box:nth-child(2):before{
	top: 50%;
	right: 50%;
	background: #33A753;
	animation: lightMe2 4s ease-out infinite normal;
}
#preloader .box:nth-child(3){
	bottom: 0;
	right: 0;
}
#preloader .box:nth-child(3):before{
	bottom: 50%;
	right: 50%;
	background: #FABB04;
	animation: lightMe3 4s ease-out infinite normal;
}
#preloader .box:nth-child(4){
	bottom: 0;
	left: 0;
}
#preloader .box:nth-child(4):before{
	bottom: 50%;
	left: 50%;
	background: #E94234;
	animation: lightMe4 4s linear infinite normal;
}
#preloader .wrap-text{
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	overflow: hidden;
}
#preloader .wrap-text .text{
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    -webkit-animation: slider 8s ease-in infinite;
    animation: slider 8s ease-in infinite;
}
#preloader .wrap-text .text span{
	display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 2em;
    color: #fff;
}

.loader-text{
    color: #fff;
    transform: translateY(-2rem);
    letter-spacing: 6px;
    opacity: 0.2;
    -webkit-animation: blink 1s ease-out infinite alternate;
    animation: blink 1s ease-out infinite alternate;
}


@keyframes lightMe1{
  0%{
    opacity: .1;
  }
  25%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
@keyframes lightMe2{
  0%{
    opacity: .1;
  }
  25%{
    opacity: .1;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
@keyframes lightMe3{
  0%{
    opacity: .1;
  }
  50%{
    opacity: .1;
  }
  75%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
@keyframes lightMe4{
  0%{
    opacity: .1;
  }
  75%{
    opacity: .1;
  }
  100%{
    opacity: 1;
  }
}

@keyframes slider{
  0%{
    transform: translateY(0);
  }
  10.5%{
    transform: translateY(0);
  }
  12.5%{
    transform: translateY(-40px);
  }
  23%{
    transform: translateY(-40px);
  }
  25%{
    transform: translateY(-80px);
  }
  35%{
    transform: translateY(-80px);
  }
  37.5%{
    transform: translateY(-120px);
  }
  47.5%{
    transform: translateY(-120px);
  }
  50%{
    transform: translateY(-160px);
  }
  60%{
    transform: translateY(-160px);
  }
  62.5%{
    transform: translateY(-200px);
  }
  72.5%{
    transform: translateY(-200px);
  }
  75%{
    transform: translateY(-240px);
  }
  85%{
    transform: translateY(-240px);
  }
  87.5%{
    transform: translateY(-280px);
  }
  100%{
    transform: translateY(-280px);
  }
}

@keyframes blink{
  from{
    opacity: .2;
  }
  to{
    opacity: .75;
  }
}
/*------------------------------------------------------------------*/
/*	02) Container
/*------------------------------------------------------------------*/
.container{
	width: 100%;
	max-width: 1920px;
	padding: 0 80px;
	margin: 0 auto;
}
.container.small{
	max-width: 1360px;
}
.container.xsmall{
	max-width: 900px;
}
.container:after,
.clearfix:after,
.clearfix:before{
	content: '';
	clear: both;
	display: table;
}
@media(max-width: 1400px){.container{padding: 0 40px;}}
@media(max-width: 1040px){.container{padding: 0 20px;}}
@media(max-width: 480px){.container{padding: 0 10px;}}
/*------------------------------------------------------------------*/
/*	03) Full Link
/*------------------------------------------------------------------*/
a.full_link{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
/*------------------------------------------------------------------*/
/*	04) Site Structure
/*------------------------------------------------------------------*/
.anor_fn_main,
.anor_fn_main *{
	box-sizing: border-box;
}
.anor_fn_main{
	position: relative;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}
#footer{
	margin-top: auto;
}
/*------------------------------------------------------------------*/
/*	05) Desktop Header
/*------------------------------------------------------------------*/
.anor_fn_header{
	border-bottom: 1px solid #bbb;
	padding: 15px 0;
	position: relative;
	z-index: 12;
}
.anor_fn_header .header_in{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_header .header_left{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-right: 50px;
}
.anor_fn_header .fn_logo{
	margin-right: 50px;
}
.anor_fn_header .fn_logo a{
	display: block;
	text-decoration: none;
}
.anor_fn_header .main_menu{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -40px;
	flex-wrap: wrap;
}
.anor_fn_header .main_menu > li{
	padding: 0;
	margin: 0;
	margin-left: 40px;
	position: relative;
}
.anor_fn_header .main_menu > li:hover{
	z-index: 5;
}
.anor_fn_header .main_menu > .menu-item-has-children > a{
	padding-right: 17px;
	position: relative;
}
.anor_fn_header .main_menu .fn__svg{
	width: 10px;
    height: 10px;
    position: absolute;
    color: #777;
    display: block;
    top: 50%;
    margin-top: -5px;
    right: 0px;
    transition: transform 300ms ease 0s;
}
.anor_fn_header .main_menu li:hover > a .fn__svg{
	transform: rotate(180deg)
}
.anor_fn_header .main_menu > li > a{
	line-height: 69px;
	color: var(--heading-color);
	text-decoration: none;
	font-weight: 500;
	display: block;
}
.anor_fn_header .main_menu a.active,
.anor_fn_header .main_menu a:hover{
	color: var(--main-color);
}
.anor_fn_header .main_menu li:hover > .anor_fn_megamenu,
.anor_fn_header .main_menu li:hover > ul{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.anor_fn_header .sub-menu{
	margin: 0;
	outline: none;
	position: absolute;
	width: 240px;
	padding: 24px 0px 22px;
	border-radius: 10px;
	background-color: #fff;
	border: 1px solid #ddd;
	box-shadow: 0px 5px 30px rgba(0,0,0,0.2);
	left: -30px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all .3s ease;
	top: 100%;
	list-style-type: none;
}
.anor_fn_header .sub-menu ul{
	left: 100%;
	top: -24px;
}
.anor_fn_header .sub-menu li{
	margin-bottom: 9px;
	position: relative;
	padding: 0 30px;
}
.anor_fn_header .sub-menu li:last-child{
	margin-bottom: 0;
}
.anor_fn_header .sub-menu a{
	display: block;
	line-height: 1.5;
	color: #222;
	text-decoration: none;
	font-weight: 500;
}
.anor_fn_header .header_right{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_header .fn_search{
	width: 200px;
	margin-right: 20px;
}
.fn_search{
	position: relative;
}
.fn_search input[type="text"]{
	width: 100%;
    height: 40px;
    background-color: #eee;
    padding: 0 20px 0 50px;
    line-height: 40px;
    margin: 0;
    outline: none;
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 0;
    max-width: 100%;
    min-width: 100%;
}
.fn_search .fn__svg{
	width: 20px;
    height: 20px;
    position: absolute;
    left: 15px;
    z-index: 2;
    top: 10px;
    color: #aaa;
    display: block;
}
/*------------------------------------------------------------------*/
/*	06) Same Item: Search field
/*------------------------------------------------------------------*/
.fn_search input[type="text"]::-webkit-input-placeholder{
	color: #888;
}
.fn_search input[type="text"]::-moz-placeholder{
	color: #888;
}
.fn_search input[type="text"]:-ms-input-placeholder{
	color: #888;
}
.fn_search input[type="text"]:-moz-placeholder{
  	color: #888;
}
.fn_search input[type="submit"]{
	width: 50px;
	height: 40px;
	position: absolute;
	left: 0;
	z-index: 3;
	top: 0;
	background-color: transparent;
	padding: 0;
	margin: 0;
	outline: none;
	opacity: 0;
	visibility: visible;
}
.fn_search .fn__svg{
	width: 20px;
	height: 20px;
	position: absolute;
	left: 15px;
	z-index: 2;
	top: 10px;
	color: #aaa;
	display: block;
}
/*------------------------------------------------------------------*/
/*	07) Mega Menu
/*------------------------------------------------------------------*/
.anor_fn_megamenu{
	opacity: 0;
	visibility: hidden;
	top: 100%;
	left: 0;
	width: 100vw;
	background-color: #fff;
	box-shadow: 0px 3px 4px rgba(0,0,0,.2);
	position: absolute;
	z-index: 3;
	transition: all .3s ease;
	transform: translateY(20px);
	border-top: 1px solid #bbb;
	padding: 29px 0 27px;
}
.anor_fn_megamenu ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.anor_fn_megamenu .cols{
	margin-left: -40px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}
.anor_fn_megamenu .col_item{
	width: 25%;
	padding-left: 40px;
}
.anor_fn_megamenu li{
	padding-left: 0px;
	margin: 5px 0;
}
.anor_fn_megamenu a{
	display: block;
	line-height: 1.5;
	color: #222;
	text-decoration: none;
	font-weight: 500;
}
.anor_fn_megamenu a span{
	display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--main-color);
    vertical-align: middle;
    position: relative;
    top: -9px;
	margin-left: 3px;
}
/*------------------------------------------------------------------*/
/*	08) Mobile Menu
/*------------------------------------------------------------------*/
.anor_fn_mobile_menu{
	width: 100%;
	height: auto;
	position: relative;
	display: none;
	z-index: 10;
}
.anor_fn_mobile_menu .mobile_menu_inner{
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.1);
	padding: 20px;
}
.anor_fn_mobile_menu .mobile_in{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.anor_fn_mobile_menu .mobile_in .logo img{
	max-height: 40px;
}
.anor_fn_mobile_menu .trigger{
	line-height: 0;
}
.anor_fn_mobile_menu .dropdown{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	display: none;
	box-shadow: 0px 5px 5px rgb(2 24 93 / 10%);
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 555;
	overflow: hidden;
}
.anor_fn_mobile_menu .dropdown_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 27px 20px 22px;
}
.vert_menu{
	margin: 0px;
	list-style-type: none;
	overflow-y: auto;
	max-height: 500px;
	max-height: 80vh;
	max-height: -moz-calc(100vh - 200px);
	max-height: -webkit-calc(100vh - 200px);
	max-height: -o-calc(100vh - 200px);
	max-height: calc(100vh - 200px);
}
.vert_menu::-webkit-scrollbar{
	width: 0;
}
.vert_menu ul{
	margin: 19px 20px;
	list-style-type: none;
	display: none;
	overflow: hidden;
}
.vert_menu li{
	margin: 0px;
	width: 100%;
	margin-bottom: 8px;
}
.vert_menu li:last-child{
	margin-bottom: 0;
}
.vert_menu a{
	text-decoration: none;
	color: #000;
	display: block;
	padding: 0px 0px;
	font-weight: 500;
	line-height: 1.3;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-bottom: 1px solid transparent;
	position: relative;
}
.vert_menu .menu-item-has-children a{
	padding-right: 20px;
}
.vert_menu .fn__svg{
	width: 14px;
    height: 14px;
    position: absolute;
    color: #777;
    display: block;
    top: 50%;
    margin-top: -7px;
    right: 0px;
    transition: transform 100ms ease 0s;
}
.vert_menu .opened > a .fn__svg{
	transform: rotate(180deg)
}
.anor_fn_mobile_menu .hamburger-inner, 
.anor_fn_mobile_menu .hamburger-inner:after, 
.anor_fn_mobile_menu .hamburger-inner:before{
	width: 30px;
	height: 2px;
}
.anor_fn_mobile_menu .hamburger-box{
	width: 30px;
}
.anor_fn_mobile_menu .hamburger{
	padding: 0px;
	cursor: pointer;
}
@media(max-width: 1040px){
	.anor_fn_mobile_menu{display: block;}
	.anor_fn_header{display: none;}
}
/*------------------------------------------------------------------*/
/*	09) Discover Section (Home #1)
/*------------------------------------------------------------------*/
#discover{
	padding: 150px 0;
}
.anor_fn_discover{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
.anor_fn_discover .discover_right{
	width: 58%;
}
.anor_fn_discover .discover_left{
	width: 42%;
	padding-right: 100px;
}
.anor_fn_discover .left_in{
	max-width: 450px;
}
.anor_fn_discover .disc_desc h3{
	font-size: 48px;
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}
.anor_fn_discover .disc_desc p{
	font-size: 24px;
	margin: 0;
	padding: 0;
	margin-bottom: 31px;
}
.anor_fn_discover .disc_info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 35px;
}
.anor_fn_discover .disc_info h3{
	margin: 0;
	padding: 0;
	font-size: 48px;
	color: var(--main-color);
	padding-right: 21px;
	position: relative;
	margin-right: 20px;
}
.anor_fn_discover .disc_info h3:after{
	content: '';
	position: absolute;
	width: 1px;
	height: 40px;
	background-color: #aaa;
	top: 50%;
	margin-top: -20px;
	right: 0;
}
.anor_fn_discover .disc_info p{
	margin: 0;
	padding: 0;
	font-size: 24px;
}
/*------------------------------------------------------------------*/
/*	10) Similar: Main Button
/*------------------------------------------------------------------*/
.anor_fn_button:after {
	content: "";
	position: absolute;
	border: 2px solid #222;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 30px;
	z-index: -1;
	-webkit-transition: all 0.4s ease 0.4s;
	-moz-transition: all 0.4s ease 0.4s;
	-o-transition: all 0.4s ease 0.4s;
	transition: all 0.4s ease 0.4s;
}
.anor_fn_button:hover {
	color: #FFF;
}
.anor_fn_button:hover:after {
	opacity: 0;
	transition: all 0.4s ease 0s;
}
.anor_fn_button {
	width: fit-content;
	line-height: 60px;
    text-decoration: none;
    letter-spacing: 0;
	padding: 0 40px;
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 500;
	border-radius: 30px;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
	display: block;
	position: relative;
	white-space: nowrap;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.anor_fn_button:hover {
	color: #fff;
	background-color: transparent;
}
.anor_fn_button:hover:before {
	left: 0%;
	right: auto;
	width: 100%;
}
.anor_fn_button:before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	background: var(--main-color);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	border-radius: 20px;
}
.anor_fn_button.small{
	font-size: 18px;
	line-height: 40px;
}
.anor_fn_button.small:after{
	border-width: 1px;
}
/*------------------------------------------------------------------*/
/*	11) Similar: Like Button (without counter)
/*------------------------------------------------------------------*/
a.anor_fn_like{
	text-decoration: none;
	display: block;
	width: 40px;
	height: 40px;
	position: relative;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
}
a.anor_fn_like:hover{
	box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}
a.anor_fn_like .fn__svg{
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -10px;
	color: #bbb;
}
a.anor_fn_like.liked .fn__svg{
	color: #f43737;
}
/*------------------------------------------------------------------*/
/*	12) Similar: Like Button (with counter)
/*------------------------------------------------------------------*/
.anor_fn_like_full{
	line-height: 46px;
	text-decoration: none;
	color: #777;
	font-weight: 500;
	display: block;
	padding: 0 22px;
	font-size: 16px;
	border: 2px solid #bbb;
	border-radius: 30px;
}
.anor_fn_like_full.link{
	border: none;
	padding: 0;
	line-height: 1.5;
}
.anor_fn_like_full:hover{
	border-color: #777;
}
.anor_fn_like_full .fn__svg{
	display: inline-block;
	vertical-align: middle;
	color: #bbb;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
.anor_fn_like_full .count{
	margin-right: 3px;
}
.anor_fn_like_full.liked .fn__svg{
	color: #f43737;
}
/*------------------------------------------------------------------*/
/*	13) Similar: Sliders (Home #1)
/*------------------------------------------------------------------*/
.anor_fn_slider_title{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 40px;
}
.anor_fn_slider_title .fn_title{
	font-size: 48px;
	margin: 0;
	padding: 0;
	margin-right: 20px;
}
.anor_fn_slider_title a{
	text-decoration: none;
	color: var(--heading-color);
	font-weight: 500;
	padding-left: 36px;
	position: relative;
	transition: all .3s ease;
}
.anor_fn_slider_title span{
	position: absolute;
	display: block;
	width: 25px;
	height: 1px;
	background-color: var(--heading-color);
	top: 50%;
	left: 0;
}
.anor_fn_slider_title a:hover{
	color: var(--main-color);
}
.anor_fn_slider_title a:hover span{
	animation: sliderArrow .5s cubic-bezier(0.23, 0.46, 0.4, 1) forwards
}
@keyframes sliderArrow {
	0% {
		transform-origin: right;
		transform: scaleX(1) translateY(calc(-50% + 0.5px)) translateZ(0)
	}
	50% {
		transform-origin: right;
		transform: scaleX(0) translateY(calc(-50% + 0.5px)) translateZ(0)
	}
	51% {
		transform-origin: left
	}
	100% {
		transform: scaleX(1.2) translateY(calc(-50% + 0.5px)) translateZ(0);
		transform-origin: left
	}
}
.anor_fn_slider_title a:hover span:after{
	opacity: 1;
	right: 1px;
	transition: all 0.2s cubic-bezier(0.23, 0.46, 0.4, 1);
	transition-delay: .3s;
}
.anor_fn_slider_title span:after {
	border: solid var(--heading-color);
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: '';
	position: absolute;
	top: -3px;
	right: 1px;
	right: -2px;
	opacity: 0;
	transition: all 0s ease;
}
/*------------------------------------------------------------------*/
/*	14) Similar: Action Box (used in single item)
/*------------------------------------------------------------------*/
.action_box .action_btn{
	text-decoration: none;
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	bottom: 0;
	right: 0;
}
.action_box .action_btn span{
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -2px;
	background-color: #777;
	border-radius: 100%;
}
.action_box .action_btn span:after,
.action_box .action_btn span:before{
	content: '';
	display: block;
	position: absolute;
	width: 4px;
	height: 4px;
	background-color: #777;
	border-radius: 100%;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
	top: 0;
}
.action_box .action_btn span:after{
	right: 100%;
	margin-right: 5px;
}
.action_box .action_btn span:before{
	left: 100%;
	margin-left: 5px;
}
.action_box .action_popup{
	width: 150px;
	height: auto;
	padding: 15px 20px 13px;
	border-radius: 5px;
	background-color: #fff;
	font-size: 16px;
	color: var(--heading-color);
	line-height: 1.5;
	bottom: 45px;
	right: 0;
	position: absolute;
	transition: all .5s ease;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	border: 1px solid #ddd;
	box-shadow: 0px 5px 30px rgba(0,0,0,0.2);
}
.action_box.opened .action_popup{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.action_box.opened .action_btn span:after{
	top: -9px;
    margin-right: -4px;
}
.action_box.opened .action_btn span:before{
	top: 9px;
    margin-left: -4px;
}
.action_box .action_popup h4{
	font-size: inherit;
	font-weight: 600;
	margin: 0;
	padding: 0;
	line-height: inherit;
}
.action_box .action_popup ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.action_box .action_popup li{
	margin-bottom: 8px;
}
.action_box .action_popup li:last-child{
	margin-bottom: 0px;
}
.action_box .action_popup a{
	text-decoration: none;
	color: #777;
	display: block;
}
.action_box .action_popup a:hover{
	color: var(--heading-color);
}
/*------------------------------------------------------------------*/
/*	15) Modalbox
/*------------------------------------------------------------------*/
.anor_fn_modal,
.anor_fn_modal *{
	box-sizing: border-box;
}
.anor_fn_modal{
	position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: -9;
    transition: all 0.3s ease;
	transform: scale(0.9) translateY(-250px);
}
.anor_fn_modal.opened{
	opacity: 1;
    visibility: visible;
    z-index: 9999;
	transform: scale(1) translateY(0px);
}
.anor_fn_modal .modal_in{
	position: relative;
    width: 600px;
	max-width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.anor_fn_modal .modal_content{
	float: left;
	width: 100%;
	clear: both;
	padding-bottom: 16px;
	position: relative;
}
.anor_fn_modal .modal_title{
	float: left;
	width: 100%;
	clear: both;
	height: 60px;
	line-height: 60px;
	font-family: 'Heebo';
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	color: var(--heading-color);
	text-align: center;
	letter-spacing: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	padding: 0 70px;
}
.anor_fn_modal .modal_title:after{
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #bbb;
	height: 1px;
	position: absolute;
	content: '';
}
.anor_fn_modal .share_title{
	float: left;
	width: 100%;
	clear: both;
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	letter-spacing: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: var(--heading-color);
	line-height: 1.5;
	padding-top: 32px;
}
.anor_fn_modal .share_list{
	float: left;
	width: 100%;
	clear: both;
	margin: 30px 0 24px 0;
	padding: 0 20px;
}
.anor_fn_modal .share_list ul{
	margin: 0;
	padding: 0;
	margin-left: -20px;
	list-style-type: none;
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.anor_fn_modal .share_list ul li{
	margin: 0;
	padding: 0;
	padding-left: 20px;
	margin-bottom: 20px;
	float: left;
}
.anor_fn_modal .share_list a{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px solid #bbb;
	line-height: 66px;
	text-align: center;
	font-size: 30px;
	color: #888;
	position: relative;
	transition: all .3s ease;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.anor_fn_modal .share_list a:hover{
	color: var(--main-color);
	transform: translateY(-5px);
	border-color: transparent;
	border-bottom-color: var(--main-color);
	border-radius: 0;
	border-width: 4px;
	line-height: 62px;
}
.anor_fn_modal .share_list a i:before{
	margin: 0;
	padding: 0;
	width: inherit;
	display: block;
}
.anor_fn_modal .modal_closer{
	cursor: pointer;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 33px;
	top: 15px;
	z-index: 33;
	color: #bbb;
	transition: all .3s ease;
}
.anor_fn_modal .modal_closer:hover{
	color: #222;
}
.anor_fn_modal .modal_closer .fn__svg{
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -8px 0 0 -8px;
}
.anor_fn_modal.report_box .modal_content{
	padding: 35px 30px 60px;
	text-align: center;
}
.anor_fn_modal.report_box .fn_title{
	font-size: 24px;
	margin: 0;
	padding: 0;
	font-weight: 600;
	margin-bottom: 29px;
}
.anor_fn_modal.report_box .fn_desc{
	font-weight: 400;
	color: var(--heading-color);
	margin-bottom: 13px;
}
.anor_fn_modal.report_box select{
	width: 100%;
	text-align: left;
	max-width: 400px;
	margin: 0 auto;
	height: 40px;
}
.anor_fn_modal.report_box input[type="submit"]{
	line-height: 40px;
	padding: 0 30px;
	border-radius: 5px;
	background-color: var(--main-color);
	outline: none;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	text-transform: inherit;
	font-family: var(--body-font-family);
	height: 40px;
	margin-top: 20px;
}
.select2-container .select2-selection--single{
	height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
	width: 30px;
	height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height: 40px;
}
.select2-container--default .select2-selection--single{
	border-color: #bbb;
}
/*------------------------------------------------------------------*/
/*	16) Similar: Collection Item
/*------------------------------------------------------------------*/
.fn__collection_item{
	border: 2px solid #ddd;
	padding: 20px;
	border-radius: 10px;
	width: 100%;
	clear: both;
	transition: all .3s ease;
}
.fn__collection_item:hover{
	border-color: var(--main-color);
	transform: translateY(-5px);
}
.fn__collection_item .title_holder{
	width: 100%;
	margin-bottom: 25px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	position: relative;
	padding-right: 50px;
}
.fn__collection_item .img_holder img{
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fn__collection_item .anor_fn_like{
	position: absolute;
	top: 0;
	right: 0;
}
.fn__collection_item .author_img{
	width: 70px;
	min-width: 70px;
	margin-right: 20px;
	position: relative;
}
.fn__collection_item .author_img img{
	border-radius: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
}
.fn__collection_item .author_img .icon{
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: var(--main-color);
	bottom: 0;
	right: 0;
	color: #fff;
}
.fn__collection_item .author_img .icon .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
}
.fn__collection_item .fn_title{
	margin: 0;
	padding: 0;
	font-size: 24px;
}
.fn__collection_item p{
	margin: 0;
	padding: 0;
	font-size: 16px;
}
.fn__collection_item p a{
	color: var(--heading-color);
	text-decoration: none;
}
.fn__collection_item p a:hover{
	color: var(--main-color);
}
/*------------------------------------------------------------------*/
/*	17) Gallery 2-1
/*------------------------------------------------------------------*/
.anor_fn_gallery_2_1 .gallery_in{
	--gap: 8px;
	
	padding: 0 var(--gap);
	
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	grid-column-gap: var(--gap);
   	grid-row-gap: var(--gap);
}
.anor_fn_gallery_2_1 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s ease;
	transform: translateZ(0);
}
.anor_fn_gallery_2_1 .row2{
	grid-row: span 2;
}
.anor_fn_gallery_2_1 .item{
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}
.anor_fn_gallery_2_1 .item:hover img{
	transform: scale(1.1);
}
/*------------------------------------------------------------------*/
/*	18) Gallery 1-1-2
/*------------------------------------------------------------------*/
.anor_fn_gallery_1_1_2 .gallery_in{
	--gap: 8px;
	--num-cols: 4;
	
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: var(--gap);
   	grid-row-gap: var(--gap);
}
.anor_fn_gallery_1_1_2 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s ease;
	transform: translateZ(0);
}
.anor_fn_gallery_1_1_2 .col2{
	grid-column: span 2;
}
.anor_fn_gallery_1_1_2 .row2{
	grid-row: span 2;
}
.anor_fn_gallery_1_1_2 .item{
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.anor_fn_gallery_1_1_2 .item:hover img{
	transform: scale(1.1) translateZ(0);
}
/*------------------------------------------------------------------*/
/*	19) Similar: Category Item
/*------------------------------------------------------------------*/
.fn__category_item{
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	transition: all .3s ease;
}
.fn__category_item:hover{
	transform: translateY(-5px);
}
.fn__category_item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fn__category_item .title_holder{
	position: absolute;
	z-index: 5;
	left: 20px;
	bottom: 20px;
	right: 20px;
	border-radius: 10px;
	background-color: #fff;
	padding: 15px 20px 14px;
	text-align: center;
}
.fn__category_item .fn_title{
	margin: 0;
	padding: 0;
	font-size: 24px;
	margin-bottom: 4px;
	font-weight: 500;
}
.fn__category_item p{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #777;
}
/*------------------------------------------------------------------*/
/*	20) Similar: Artist Item
/*------------------------------------------------------------------*/
.fn__artist_item{
	border: 2px solid #ddd;
	width: 100%;
	padding: 38px;
	border-radius: 10px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	transition: all .3s ease;
}
.fn__artist_item:hover {
    border-color: var(--main-color);
    transform: translateY(-5px) translateZ(0);
}
.fn__artist_item .author_img{
	position: relative;
	margin-bottom: 16px;
}
.fn__artist_item .author_img img{
	border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 20%);
}
.fn__artist_item .author_img .icon{
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: var(--main-color);
	bottom: 2.5%;
	right: 12.5%;
	color: #fff;
	z-index: 6;
}
.fn__artist_item .author_img .icon .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
}
.fn__artist_item .fn_title{
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 14px;
}
/*------------------------------------------------------------------*/
/*	21) Similar: Follow Button
/*------------------------------------------------------------------*/
.anor_fn_follow{
	min-width: 150px;
	max-width: 100%;
	text-align: center;
	line-height: 40px;
    text-decoration: none;
    letter-spacing: 0;
	padding: 0 40px;
	color: var(--heading-color);
	font-size: 16px;
	font-weight: 500;
	border-radius: 30px;
	overflow: hidden;
	cursor: pointer;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position: relative;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.anor_fn_follow .icon{
	width: 10px;
	height: 10px;
	position: relative;
	display: block;
	display: none;
	margin-right: 6px;
	z-index: 3;
}
.anor_fn_follow .icon .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	color: #777;
}
.anor_fn_follow .plus{
	width: 10px;
	height: 10px;
	display: block;
	position: relative;
	margin-right: 6px;
	z-index: 3;
}
.anor_fn_follow .plus:after{
	position: absolute;
	content: '';
	width: 1px;
	height: 9px;
	background-color: #222;
	left: 4px;
	top: 0;
	transition: all 0.4s ease 0s;
}
.anor_fn_follow .plus:before{
	position: absolute;
	content: '';
	width: 9px;
	height: 1px;
	background-color: #222;
	top: 4px;
	left: 0;
	transition: all 0.4s ease 0s;
}
.anor_fn_follow:after {
	content: "";
	position: absolute;
	border: 2px solid #222;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 30px;
	z-index: 1;
	-webkit-transition: all 0.4s ease 0.4s;
	-moz-transition: all 0.4s ease 0.4s;
	-o-transition: all 0.4s ease 0.4s;
	transition: all 0.4s ease 0.4s;
}
.anor_fn_follow:hover {
	color: #FFF;
}
.anor_fn_follow:hover:after {
	opacity: 0;
	transition: all 0.4s ease 0s;
}
.anor_fn_follow:hover {
	color: #fff;
	background-color: transparent;
}
.anor_fn_follow:hover:before {
	left: 0%;
	right: auto;
	width: 100%;
}
.anor_fn_follow:hover .plus:before,
.anor_fn_follow:hover .plus:after{
	background-color: #fff;
}
.anor_fn_follow:before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: 1;
	content: '';
	background: var(--main-color);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	border-radius: 20px;
}
.anor_fn_follow .text{
	position: relative;
	z-index: 5;
	white-space: nowrap;
}
.anor_fn_follow.followed .icon{
	display: block;
}
.anor_fn_follow.followed:before{
	background-color: #555;
}
.anor_fn_follow.followed:after,
.anor_fn_follow.followed .plus{
	display: none;
}
.anor_fn_follow.followed{
	background-color: #eee;
	color: #777;
}
/*------------------------------------------------------------------*/
/*	22) Blog Section
/*------------------------------------------------------------------*/
#blog{
	padding: 90px 0 200px;
}
.fn__blog_item{
	margin-bottom: 53px;
	transition: all .3s ease;
}
.fn__blog_item:hover{
	transform: translateY(-5px) translateZ(0);
}
.fn__blog_item .img_holder{
	position: relative;
}
.fn__blog_item img{
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}
.fn__blog_item .title_holder{
	width: 100%;
	padding: 15px 20px 14px;
}
.fn__blog_item .fn_title{
	font-size: 24px;
	margin: 0;
	padding: 0;
	margin-bottom: 9px;
}
.fn__blog_item p{
	font-size: 16px;
	margin: 0;
	padding: 0;
	color: #777;
}
/*------------------------------------------------------------------*/
/*	23) Footer
/*------------------------------------------------------------------*/
.anor_fn_footer .footer_top{
	background-color: #eaf7eb;
	width: 100%;
	padding: 70px 0;
}
.anor_fn_footer .ft_in{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.anor_fn_footer .ft_left{
	width: 42%;
	padding-right: 100px;
}
.anor_fn_footer .ft_left_in{
	max-width: 450px;
}
.anor_fn_footer .ft_right{
	width: 58%;
}
.anor_fn_footer .logo{
	margin-bottom: 24px;
}
.anor_fn_footer .link_list ul{
	margin: 0;
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: wrap;
	margin-left: -20px;
	list-style-type: none;
}
.anor_fn_footer .link_list li{
	margin: 0;
	padding: 0;
	width: 25%;
	padding-left: 20px;
	margin-bottom: 6px;
}
.anor_fn_footer .link_list a{
	text-decoration: none;
	font-weight: 400;
	color: #222;
}
.anor_fn_footer .link_list a:hover{
	color: var(--main-color);
}
.anor_fn_footer .ft_right .fn_title{
	margin: 0;
	padding: 0;
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.anor_fn_footer .footer_bottom{
	background-color: #222;
	width: 100%;
	padding: 25px 0;
}
.anor_fn_footer .fb_in{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.anor_fn_footer .fb_left ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -30px;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_footer .fb_left li{
	padding: 0;
	padding-left: 30px;
	margin: 5px 0;
}
.anor_fn_footer .fb_left p{
	font-size: 16px;
	color: #ddd;
}
.anor_fn_footer .fb_left a{
	color: #ddd;
	font-size: 16px;
	text-decoration: none;
}
.anor_fn_footer .fb_left a:hover{
	color: var(--main-color);
}
.anor_fn_footer .social_list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_footer .social_list li{
	margin: 5px 30px 5px 0;
	padding: 0;
}
.anor_fn_footer .social_list a{
	color: #777;
	font-size: 20px;
	display: block;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}
.anor_fn_footer .social_list a i{
	transition: none;
}
.anor_fn_footer .social_list a i:before{
	margin: 0;
	padding: 0;
	display: block;
	width: inherit;
}
.anor_fn_footer .social_list a:hover{
	color: #ccc;
}
.anor_fn_footer .fb_right{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-left: 30px;
}
.anor_fn_footer .totop{
	width: 30px;
	height: 30px;
	min-width: 30px;
	background-color: #393939;
	border-radius: 3px;
	position: relative;
	margin: 5px 0;
}
.anor_fn_footer .totop:after{
	content: '';
	position: absolute;
	border: 4px solid transparent;
	border-bottom-color: #ddd;
	border-bottom-width: 5px;
	left: 10px;
	bottom: 12px;
}
.anor_fn_footer .totop:hover{
	background-color: #333;
}
/*------------------------------------------------------------------*/
/*	24) Magic Cursor
/*------------------------------------------------------------------*/
.frenify-cursor[data-default="no"]{opacity: 0;}
.frenify-cursor[data-default="no"].cursor-inner{
	transition: opacity .3s ease;
}
.frenify-cursor[data-default="no"].cursor-inner.cursor-hover,
.frenify-cursor[data-default="no"].cursor-inner.cursor-slider{opacity: 1;}
.frenify-cursor[data-link="no"].cursor-inner.cursor-hover{opacity: 0;}
.frenify-cursor[data-slider="no"].cursor-inner.cursor-slider{opacity: 0;}
.frenify-cursor{
	position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}
.frenify-cursor.mouse-down .fn-cursor{
	transform: scale(.9);
}
.cursor-link{
    width: 30px;
    height: 30px;
	margin-left: -15px;
    margin-top: -15px;
    border: 2px solid rgba(0,0,0,.5);
    z-index: 10000000;
    -webkit-transition: all .08s ease-out;
    transition: all .08s ease-out;
}
.cursor-outer{
    z-index: 10000000;
    -webkit-transition: transform .08s ease-out, opacity 1s ease;
    transition: transform .08s ease-out, opacity 1s ease;
}
.cursor-outer .fn-cursor{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,.5);
}
.cursor-inner .fn-cursor{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -3px 0 0 -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
	background-color: rgba(0,0,0,.5);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.cursor-outer.cursor-slider,
.cursor-outer.cursor-hover{
	opacity: 0;
    -webkit-transition: transform .08s ease-out, opacity .2s ease;
    transition: transform .08s ease-out, opacity .2s ease;
}
.cursor-inner{
    z-index: 10000001;
}
.cursor-inner.cursor-hover .fn-cursor {
	margin: -40px 0 0 -40px;
	width: 80px;
	height: 80px;
	background-color: rgba(0,0,0,.1);
}

.cursor-inner.cursor-slider:not(.cursor-hover) .fn-cursor {
	margin-left: -30px;
	margin-top: -30px;
	width: 60px;
	height: 60px;
	background-color: transparent;
	border: 5px solid rgba(0,0,0,.5);
}
.cursor-inner.cursor-slider.cursor-hover span:after,
.cursor-inner.cursor-slider.cursor-hover span:before{
	background-color: #000;
	opacity: 0;
}
.cursor-inner.cursor-slider .fn-left,
.cursor-inner.cursor-slider .fn-right{
	opacity: 1;
	visibility: visible;
}
.cursor-inner.cursor-slider .fn-left:after{left: -26px;}
.cursor-inner.cursor-slider .fn-left:before{left: -26px;}
.cursor-inner.cursor-slider .fn-left:after{right: -26px;}
.cursor-inner.cursor-slider .fn-left:before{right: -26px;}

.cursor-inner .fn-left,
.cursor-inner .fn-right{
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}
.cursor-inner .fn-left:after{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(50deg);
	left: -20px;
	top: 50%;
	margin-top: -10px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-left:before{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(130deg);
	left: -20px;
	top: 50%;
	margin-top: -2px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-right:after{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(50deg);
	right: -20px;
	top: 50%;
	margin-top: -2px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-right:before{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(130deg);
	right: -20px;
	top: 50%;
	margin-top: -10px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
@media(max-width: 1040px){
	.frenify-cursor{display: none;}
}
/*------------------------------------------------------------------*/
/*	25) Selling Page
/*------------------------------------------------------------------*/
.anor_fn_selling_page .desc_holder{
	text-align: center;
	padding: 100px 0 63px;
}
.anor_fn_selling_page .desc_holder img{
	margin-bottom: 42px;
}
.anor_fn_selling_page .desc_holder .fn_title{
	font-size: 30px;
	margin: 0;
	padding: 0;
	margin-bottom: 7px;
}
.anor_fn_selling_page .desc_holder p{
	margin: 0;
	padding: 0;
	font-family: var(--extra-font-family);
	font-size: 16px;
	color: var(--body-color);
	margin-bottom: 11px;
}
.anor_fn_selling_page .desc_holder a{
	text-decoration: none;
	color: var(--main-color);
	font-family: var(--extra-font-family);
	font-size: 16px;
	border-bottom: 1px solid transparent;
}
.anor_fn_selling_page .desc_holder a:hover{
	border-bottom-color: var(--main-color);
}
/*------------------------------------------------------------------*/
/*	26) Icon List (used in Selling page)
/*------------------------------------------------------------------*/
.anor_fn_icon_list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -45px;
	margin-bottom: 105px;
}
.anor_fn_icon_list li{
	padding: 0;
	margin: 0;
	width: 33.3333%;
	padding-left: 45px;
	margin-bottom: 45px;
}
.anor_fn_icon_list .item{
	padding: 50px 50px 44px;
	width: 100%;
	border-radius: 15px;
	border: 2px solid #ddd;
	height: 100%;
	text-align: center;
	background-color: #fff;
	transition: all .3s ease;
}
.anor_fn_icon_list .item:hover{
	border-color: var(--main-color);
	transform: translateY(-5px) translateZ(0);
}
.anor_fn_icon_list img{
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}
.anor_fn_icon_list .fn_title{
	margin: 0;
	padding: 0;
	font-size: 24px;
	margin-bottom: 8px;
}
.anor_fn_icon_list .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #777;
	font-family: var(--extra-font-family);
}
@media(max-width: 1040px){
	.anor_fn_icon_list li{width: 50%;}
}
@media(max-width: 768px){
	.anor_fn_icon_list li{width: 100%;}
}
/*------------------------------------------------------------------*/
/*	27) Similar: Single Item
/*------------------------------------------------------------------*/
.fn__single_item{
	width: 100%;
	position: relative;
	transition: all .3s ease;
}
.fn__single_item:hover{
	transform: translateY(-5px);
}
.fn__single_item .img_holder{
	position: relative;
}
.fn__single_item .img_holder img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.fn__single_item a.anor_fn_like{
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 5;
}
.fn__single_item .action_box{
	position: absolute;
	z-index: 11;
	bottom: -20px;
	right: 20px;
}
.fn__single_item .title_holder{
	padding: 15px 20px 0px;
}
.fn__single_item .title_holder .fn_title{
	font-size: 24px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	margin-bottom: 6px;
}
.fn__single_item .title_holder p{
	font-size: 16px;
	margin: 0;
	padding: 0;
	color: #777;
	line-height: 1.5;
}
.fn__single_item .title_holder p span{
	display: inline-block;
	border-radius: 3px;
	color: var(--main-color);
	padding: 0 6px;
	background-color: #d6efd8;
	font-weight: 600;
	margin-right: 3px;
}
.fn__single_item .title_holder p.initial span{
	color: #222;
	background-color: #eee;
}
.fn__single_item .countdown_holder{
	position: absolute;
	z-index: 10;
	left: 20px;
	bottom: 20px;
	padding: 0 15px;
	line-height: 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 80%;
	background-color: #000;
	color: #ccc;
	font-size: 14px;
	font-weight: 400;
	border-radius: 30px;
}
.anor_fn_item_slider .fn__single_item .title_holder,
.anor_fn_auction_slider .fn__single_item .title_holder{
	padding-bottom: 70px;
}
/*------------------------------------------------------------------*/
/*	28) Author Information Box (used in author page)
/*------------------------------------------------------------------*/
.author_info_box{
	padding: 100px 0;
}
.author_info_box .info_box{
	width: 100%;
	padding: 40px;
	background-color: #f5f5f5;
	border-radius: 15px;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.author_info_box .author_content{
	width: 100%;
}
.author_info_box .author_img{
	width: 180px;
	min-width: 180px;
	position: relative;
	margin-right: 40px;
}
.author_info_box .author_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}
.author_info_box .author_img .icon{
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: var(--main-color);
	bottom: 2.5%;
	right: 12.5%;
	color: #fff;
}
.author_info_box .author_img .icon .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
}
.author_info_box .fn_title{
	margin: 0;
	padding: 0;
	font-size: 30px;
	margin-bottom: 8px;
}
.author_info_box .desc p{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #777;
	margin-bottom: 9px;
}
.author_info_box .author_meta{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 10px;
}
.author_info_box .author_meta > *{
	margin: 5px 10px 5px 0;
}
.author_info_box .author_meta > *:last-child{
	margin-right: 0;
}
.author_info_box .info{
	padding: 0 20px;
	background-color: #e5e5e5;
	border-radius: 5px;
}
.author_info_box .info span{
	line-height: 40px;
	color: #777;
	font-size: 16px;
	font-weight: 500;
}
.fn__id{
	display: inline-block;
	max-width: 105px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
	position: relative;
}
.author_info_box .info span:first-child{
	position: relative;
	margin-right: 31px;
}
.author_info_box .info span:first-child:after{
	content: '';
	position: absolute;
	height: 24px;
	width: 1px;
	background-color: #bbb;
	right: -15px;
	top: 50%;
	margin-top: -12px;
}
.anor_fn_modal .anor_fn_follow .plus:before,
.anor_fn_modal .anor_fn_follow .plus:after,
.author_info_box .anor_fn_follow .plus:before,
.author_info_box .anor_fn_follow .plus:after{
	background-color: #777;
}
.anor_fn_modal .anor_fn_follow:hover .plus:before,
.anor_fn_modal .anor_fn_follow:hover .plus:after,
.author_info_box .anor_fn_follow:hover .plus:before,
.author_info_box .anor_fn_follow:hover .plus:after{
	background-color: #fff;
}
.anor_fn_modal .anor_fn_follow,
.author_info_box .anor_fn_follow{
	color: #777;
}
.anor_fn_modal .anor_fn_follow:hover,
.author_info_box .anor_fn_follow:hover{
	color: #fff;
}
.anor_fn_modal .anor_fn_follow:after,
.author_info_box .anor_fn_follow:after{
	border-color: #bbb;
}
.author_info_box .author_action{
	position: relative;
}
.author_info_box .author_action .action_btn{
	text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    background-color: #e5e5e5;
	border-radius: 5px;
}
.author_info_box .author_action .action_btn span{
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -2px;
	background-color: #777;
	border-radius: 100%;
}
.author_info_box .author_action .action_btn span:after,
.author_info_box .author_action .action_btn span:before{
	content: '';
	display: block;
	position: absolute;
	width: 4px;
	height: 4px;
	background-color: #777;
	border-radius: 100%;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
	top: 0;
}
.author_info_box .author_action .action_btn span:after{
	right: 100%;
	margin-right: 5px;
}
.author_info_box .author_action .action_btn span:before{
	left: 100%;
	margin-left: 5px;
}
.author_info_box .author_action .action_popup{
	width: 150px;
    height: auto;
    padding: 15px 20px 13px;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: var(--heading-color);
    line-height: 1.5;
   	top: 100%;
	left: 0;
    position: absolute;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(21px);
    border: 1px solid #ddd;
    box-shadow: 0px 5px 30px rgb(0 0 0 / 20%);
}
.author_info_box .author_action.opened .action_popup{
	opacity: 1;
	visibility: visible;
	transform: translateY(1px);
}
.author_info_box .author_action.opened .action_btn span:after{
	top: -9px;
    margin-right: -4px;
}
.author_info_box .author_action.opened .action_btn span:before{
	top: 9px;
    margin-left: -4px;
}
.author_info_box .author_action .action_popup ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.author_info_box .author_action .action_popup li{
	margin-bottom: 8px;
}
.author_info_box .author_action .action_popup li:last-child{
	margin-bottom: 0px;
}
.author_info_box .author_action .action_popup a{
	text-decoration: none;
	color: #777;
	display: block;
}
.author_info_box .author_action .action_popup a:hover{
	color: var(--heading-color);
}
.author_info_box .followers a{
	display: inline-block;
	text-decoration: none;
	font-size: 16px;
	color: #777;
	border-bottom: 1px solid transparent;
}
.author_info_box .followers a:hover{
	border-bottom-color: #777;
}
.author_info_box .followers a:first-child{
	margin-right: 15px;
}
.author_info_box .followers span{
	font-weight: 600;
	color: var(--heading-color);
}
/*------------------------------------------------------------------*/
/*	29) Similar: Mini Items (used for following and followers modalbox)
/*------------------------------------------------------------------*/
.mini_item{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	border-radius: 10px;
	background-color: transparent;
	transition: all .3s ease;
}
.mini_item:hover{
	background-color: #eee;
}
.mini_item .mi_left{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.mini_item .author_img{
	width: 70px;
	min-width: 70px;
	position: relative;
	margin-right: 20px;
}
.mini_item .author_img img{
	border-radius: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mini_item .author_img .icon{
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: var(--main-color);
	bottom: 0;
	right: 0;
	color: #fff;
}
.mini_item .author_img .icon .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
}
.mini_item .fn_title{
	margin: 0;
	padding: 0;
	font-size: 20px;
	margin-bottom: 6px;
}
.mini_item .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #777;
}
.anor_fn_modal.follower_box .modal_content{
	padding: 30px 0;
}
.anor_fn_modal.follower_box .list{
	margin: 0;
	padding: 0 30px;
	list-style-type: none;
	max-height: 470px;
	overflow-y: scroll;
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}
.anor_fn_modal.follower_box .list::-webkit-scrollbar{
	width: 11px;
}
.anor_fn_modal.follower_box .list:-webkit-scrollbar-track{
	background: #fff;
}
.anor_fn_modal.follower_box .list::-webkit-scrollbar-thumb{
	background-color: #999;
	border-radius: 10px;
	border: 3px solid #fff;
}
.anor_fn_modal.follower_box .list li{
	margin-bottom: 5px;
}
.anor_fn_modal.follower_box .list li:last-child{
	margin-bottom: 0px;
}
/*------------------------------------------------------------------*/
/*	30) Author Tab List
/*------------------------------------------------------------------*/
.anor_fn_tabs .tab_bottom{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.anor_fn_tabs .tab_filter_wrapper{
	width: 100%;
	padding-left: 350px;
}
.anor_fn_tabs .tab_filter{
	padding: 0 40px;
	position: relative;
}
.anor_fn_tabs .tab_filter .ccc{
	position: absolute;
    bottom: -2px;
    width: 0;
    background-color: var(--main-color);
    display: block;
    height: 4px;
    transition: all .5s ease;
    border-radius: 5px;
}
.anor_fn_tabs .tab_filter ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	margin-left: -15px;
}
.anor_fn_tabs .tab_filter li{
	margin: 0;
	padding: 0;
	margin-left: 15px;
}
.anor_fn_tabs .tab_filter a{
	display: block;
	text-decoration: none;
	line-height: 57px;
	padding: 0 20px;
	color: var(--heading-color);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
}
.anor_fn_tabs .tab_filter .text{
	position: relative;
	line-height: 1;
}
.anor_fn_tabs .tab_filter .text span{
	position: absolute;
	font-size: 12px;
	color: #777;
	bottom: 100%;
	left: 100%;
	margin-bottom: -5px;
	white-space: nowrap;
}
.anor_fn_tabs .tab_content{
	width: 100%;
	border-top: 1px solid #bbb;
	border-left: 1px solid #bbb;
}
.anor_fn_tabs .tab_header{
	padding: 40px;
	border-bottom: 1px solid #bbb;
}
.anor_fn_tabs .tab_header .links{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: wrap;
}
.anor_fn_tabs .tab_header .links a{
	display: block;
    width: fit-content;
    max-width: 100%;
    padding: 0 30px;
    line-height: 40px;
    background-color: #eee;
    color: var(--heading-color);
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	margin: 5px 10px 5px 0;
}
.anor_fn_tabs .tab_header .links a.current{
	background-color: var(--main-color);
    color: #fff;
}
/*------------------------------------------------------------------*/
/*	31) Searchpanel in author page
/*------------------------------------------------------------------*/
.anor_fn_searchpanel{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.anor_fn_searchpanel .search_right{
	margin-left: 20px;
}
.anor_fn_searchpanel .search_right p{
	margin: 5px 0;
	padding: 0;
	font-size: 18px;
	color: #222;
	font-weight: 600;
	line-height: 40px;
	white-space: nowrap;
}
.anor_fn_searchpanel .search_left{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.anor_fn_searchpanel .search_left > *{
	margin: 5px 10px 5px 0;
	position: relative;
}
.anor_fn_searchpanel .search_left > *:last-child{
	margin-right: 0;
}
.anor_fn_tabs .tab_list{
	padding: 40px;
}
.anor_fn_tabs .fn__single_item .title_holder .fn_title{
	font-size: 20px;
}
.anor_fn_tabs .tab_list .anor_fn_pagination{
	margin-bottom: 60px;
}
.input_wrapper{
	position: relative;
	cursor: pointer;
}
.dd_filter{
	position: relative;
}
.input_wrapper input{
	width: 200px;
    height: 40px;
    background-color: transparent;
    padding: 0 30px 0 10px;
    line-height: 38px;
    margin: 0;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 0;
    max-width: 100%;
    min-width: 100%;
	border: 1px solid #bbb;
	cursor: pointer;
}
.input_wrapper .fn__svg{
	width: 14px;
    height: 14px;
    position: absolute;
    right: 10px;
    z-index: 2;
    top: 50%;
	margin-top: -7px;
    color: #bbb;
    display: block;
}
.input_dd_list{
	position: absolute;
	top: 100%;
	z-index: 3;
	width: 100%;
	background-color: #fff;
	height: auto;
    padding: 15px 20px 13px;
    border-radius: 5px;
    font-size: 16px;
    color: var(--heading-color);
    line-height: 1.5;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border: 1px solid #ddd;
    box-shadow: 0px 5px 30px rgb(0 0 0 / 20%);
}
.input_dd_list > *{
	margin-bottom: 8px;
}
.input_dd_list > *:last-child{
	margin-bottom: 0;;
}
.opened .input_dd_list{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.input_dd_list a{
	text-decoration: none;
    color: #777;
    display: block;
}
.input_dd_list a:hover{
	color: var(--heading-color);
}
.anor_fn_searchpanel .filter_item{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_searchpanel a.clear{
	text-decoration: none;
	font-size: 16px;
	color: #777;
}
.anor_fn_searchpanel a.clear:hover{
	color: var(--heading-color);
}
/*------------------------------------------------------------------*/
/*	32) Left Tab Filter
/*------------------------------------------------------------------*/
.anor_fn_tabs .anor_fn_filters{
	width: 350px;
	min-width: 350px;
	background-color: #eee;
}
.anor_fn_filters .filter_header{
	background-color: #222;
	padding: 15px 20px;
	position: relative;
	min-height: 54px;
	width: -moz-calc(100% + 1px);
	width: -webkit-calc(100% + 1px);
	width: -o-calc(100% + 1px);
	width: calc(100% + 1px);
}
.anor_fn_filters .filter_header .icon{
	display: block;
	position: absolute;
	width: 14px;
	height: 2px;
	background-color: #acacac;
	right: 20px;
	top: 50%;
	margin-top: -1px;
}
.anor_fn_filters .filter_header .icon:after{
	content: '';
	position: absolute;
	width: 2px;
	height: 14px;
	background-color: #acacac;
	left: 50%;
	margin-left: -1px;
	top: -6px;
	opacity: 0;
}
.anor_fn_filters .filter_header .text{
	display: block;
	font-size: 18px;
	color: #ddd;
	font-weight: 400;
	line-height: 24px;
}
.anor_fn_filters .filter_item{
	border-bottom: 1px solid #bbb;
}
.anor_fn_filters .filter_item__header{
	background-color: #eee;
	position: relative;
	padding: 20px;
}
.anor_fn_filters .filter_item__header .text{
	line-height: 30px;
	color: var(--heading-color);
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
}
.anor_fn_filters .closed .filter_item__header .fn__svg{
	transform: rotate(180deg);
}
.anor_fn_filters .filter_item__header .fn__svg{
	width: 14px;
	height: 14px;
	position: absolute;
	color: #777;
	display: block;
	top: 50%;
	margin-top: -7px;
	right: 20px;
	transition: transform 100ms ease 0s;
}
.anor_fn_filters .filter_item__content{
	width: 100%;
	height: initial;
	overflow: visible;
	transition: height 100ms ease 0s;
}
.anor_fn_filters .closed .filter_item__content{
	height: 0;
	overflow: hidden;
}
.anor_fn_filters .ic_in{
	width: 100%;
	padding: 30px 20px;
	background-color: #fff;
}
.anor_fn_filters .items{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -10px;
}
.anor_fn_filters .items > li{
	margin: 0;
	padding: 0;
	padding-left: 10px;
	margin-bottom: 10px;
	width: 100%;
}
.anor_fn_filters .items > li.half{
	width: 50%;
}
.checkbox{
	width: 100%;
	display: block;
	position: relative;
	padding-left: 23px;
	cursor: pointer;
	font-size: 16px;
	color: #777;
	margin-bottom: 4px;
}
.checkbox .checkmark .fn__svg{
	width: 12px;
	height: 12px;
	position: relative;
	top: 1px;
	left: 1px;
	display: none;
	color: var(--main-color);
}
.checkbox input:checked ~ .checkmark {
	border-color: var(--main-color);
}
.checkbox input:checked ~ .checkmark .fn__svg {
	display: block;
}
.checkbox input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkbox .checkmark{
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	left: 0;
	border: 1px solid #bbb;
	border-radius: 3px;
}
.checkbox .checkmark:after{
  content: "";
  position: absolute;
  display: none;
}
.anor_fn_filters .items input[type="number"]{
	width: 100%;
	min-width: inherit;
	height: 40px;
	line-height: 38px;
	border: 1px solid #bbb;
	border-radius: 5px;
	outline: none;
}
.anor_fn_filters .apply{
	display: block;
	width: fit-content;
	max-width: 100%;
	padding: 0 30px;
	line-height: 40px;
	background-color: var(--main-color);
	color: #fff;
	border-radius: 5px;
	font-size: 16px;
	text-decoration: none;
	font-weight: 500;
}
/* Spacing for left filters content */
.anor_fn_filters .filter_event_type .ic_in{
	padding-bottom: 20px;
}
.anor_fn_filters .filter_collections .fn_search{
	margin-bottom: 18px;
}
.anor_fn_filters .filter_collections .ic_in{
	padding-bottom: 20px;
}
.anor_fn_filters .filter_price .ic_in{
	padding-bottom: 20px;
}
.anor_fn_filters .filter_chains .ic_in,
.anor_fn_filters .filter_status .ic_in{
	padding-top: 27px;
	padding-bottom: 13px;
}

/* Close Filter */
.anor_fn_filters .filter_header .icon,
.anor_fn_tabs .tab_filter_wrapper,
.anor_fn_tabs .anor_fn_filters{
	transition: all .4s ease;
}

/* Close function will works only on tablet and desktops */
@media(min-width: 769px){
	.anor_fn_tabs.closed .tab_filter_wrapper{
		padding-left: 54px;
	}
	.anor_fn_tabs.closed .anor_fn_filters{
		width: 54px;
		min-width: 54px;
	}
	.anor_fn_tabs.closed .anor_fn_filters .filter_header .text{
		display: none;
	}
	.anor_fn_tabs.closed .anor_fn_filters .filter_content{
		display: none;
	}
	.anor_fn_tabs.closed .anor_fn_filters .filter_header .icon:after{
		opacity: 1;
	}
	.anor_fn_tabs.closed .anor_fn_filters .filter_header .icon{
		transform: rotate(180deg);
	}
}
.anor_fn_tabs .fn__collection_item .fn_title{
	font-size: 20px;
}
/*------------------------------------------------------------------*/
/*	33) Activitiy Table
/*------------------------------------------------------------------*/
.fn__activity_table .at_header{
	padding: 18px 40px;
	background-color: #eee;
}
.fn__activity_table .at_list{
	padding-bottom: 140px;
}
.fn__activity_table .at_item{
	padding: 20px 40px;
	position: relative;
}
.fn__activity_table .at_item:after{
	bottom: 0;
	height: 1px;
	content: '';
	position: absolute;
	background-color: #ddd;
	left: 40px;
	right: 40px;
}
.fn__activity_table .at_item,
.fn__activity_table .at_header{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	-ms-align-items: center;
	align-items: center;
}
.fn__activity_table .at_item .item,
.fn__activity_table .at_header .item{
	padding-right: 10px;
}
.fn__activity_table .at_header .item{
	line-height: 18px;
	font-size: 14px;
	font-weight: 400;
	color: #777;
	text-transform: uppercase;
}
.fn__activity_table .at_item .item{
	font-weight: 400;
	font-size: 18px;
	color: var(--heading-color);
}
.fn__price_rate .fn_title{
	margin: 0;
	padding: 0;
	font-size: 18px;
	margin-bottom: 1px;
}
.fn__price_rate .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #777;
}
.fn__price_rate .price_rate{
	display: inline-block;
	margin-left: 7px;
}
.fn__price_rate .price_rate .fn__svg{
	width: 13px;
	height: 13px;
	display: block;
	transform: rotate(-90deg);
	color: #777;
}
.fn__price_rate .price_rate.increase .fn__svg{
	color: var(--main-color);
}
.fn__price_rate .price_rate.decrease .fn__svg{
	color: #ff0000;
	transform: rotate(90deg);
}
.fn__activity_table .at_item .item_to a,
.fn__activity_table .at_item .item_from a{
	text-decoration: none;
	color: var(--heading-color);
}
.fn__activity_table .at_item .item_to a:hover,
.fn__activity_table .at_item .item_from a:hover{
	color: var(--main-color);
}
.item_time a{
	text-decoration: none;
	color: #777;
}
.item_time a:hover{
	color: var(--heading-color);
}
.item_time .fn__svg{
	width: 19px;
	height: 19px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 4px;
}
/* Activities */
.activity .item{width: 16%;}
.activity .item_event{width: 11%;}
.activity .item_price{width: 11%;}
.activity .item_info{width: 22%;}
.activity .item_quantity{width: 8%;}
.activity .at_item .item_event{font-weight: 600;}
/*disable some items for small devices*/
@media(max-width: 1200px){
	.activity .item_to,
	.activity .item_from,
	.activity .item_quantity{
		display: none;
	}
	.activity .item_info{width: 44%;}
	.activity .item_price{width: 22%;}
	.activity .item_event{width: 15%;}
	.activity .item_time{width: 19%;}
}
@media(max-width: 768px){
	.activity .item_time{display: none;}
	.activity .item_event{width: 20%;}
	.activity .item_price{width: 36%;}
}
/* Offers */
.offer .item_info{width: 28%;}
.offer .item_price{width: 18%;}
.offer .item_from{width: 18%;}
.offer .item_expire{width: 18%;}
.offer .item_time{width: 18%;}
.offer .at_item .item_expire,
.offer .at_item .item_time{
	color: #777;
}
/*disable some items for small devices*/
@media(max-width: 1200px){
	.offer .item_expire,
	.offer .item_from,
	.offer .item_time{
		display: none;
	}
	.offer .item_info{width: 60%;}
	.offer .item_price{width: 40%;}
}
/*------------------------------------------------------------------*/
/*	34) Similar: Short Item
/*------------------------------------------------------------------*/
.item__short{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.item__short .img_holder{
	width: 50px;
	min-width: 50px;
	position: relative;
	margin-right: 10px;
}
.item__short .img_holder img{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	object-fit: cover;
}
.item__short .img_holder .verified_icon{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 6;
}
.item__short .fn_title{
	margin: 0;
	padding: 0;
	font-size: 18px;
	margin-bottom: 1px;
}
.item__short .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #777;
}
.item__short .fn_desc a{
	text-decoration: none;
	color: inherit;
}
.item__short .fn_desc a:hover{
	color: var(--heading-color);
}
.verified_icon{
	position: relative;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--main-color);
    color: #fff;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
.verified_icon .fn__svg{
	width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
}
.anor_fn_activity_page .anor_fn_tabs .tab_content{
	border-top: none;
}
/*------------------------------------------------------------------*/
/*	35) Add Item Page
/*------------------------------------------------------------------*/
.anor_fn_add_item{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 70px 0;
}
.anor_fn_add_item .preview_part{
	padding-right: 50px;
	min-width: 410px;
}
.anor_fn_add_item .field_part{
	width: 100%;
}
.anor_fn_add_item .top_title .fn_title{
	margin: 0;
	padding: 0;
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.anor_fn_upload_media{
	margin-bottom: 27px;
}
.anor_fn_upload_media label{
	width: 100%;
	text-align: center;
	background-color: #eee;
	border-radius: 10px;
	border: 2px dashed #b7b7b7;
	cursor: pointer;
	padding: 55px 20px 60px 20px;
	font-size: 16px;
	color: #777;
	line-height: 1.5;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_upload_media input{
	display: none;
}
.anor_fn_upload_media .desc{
	margin-bottom: 23px;
}
.anor_fn_add_item .fields{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -20px;
}
.anor_fn_add_item .field{
	margin: 0;
	padding: 0;
	padding-left: 20px;
	margin-bottom: 25px;
	width: 100%;
}
.anor_fn_add_item .start .field_item{
	height: auto;
}
.anor_fn_add_item .field_item{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	height: 100%;
	width: 100%;
}
.anor_fn_add_item .field_item.end{
	justify-content: flex-end;
}
.anor_fn_add_item .label{
	display: block;
	width: 100%;
	font-size: 16px;
	color: var(--heading-color);
	font-weight: 400;
	margin-bottom: 4px;
}
.anor_fn_add_item .label span{
	color: #777;
}
.anor_fn_add_item textarea,
.anor_fn_add_item input[type="text"]{
	width: 100%;
	padding: 0 10px;
	height: auto;
	line-height: 48px;
	border: 1px solid #bbb;
	border-radius: 10px;
	outline: none;
	background-color: transparent;
	font-size: 16px;
	display: block;
	min-width: 100%;
	max-width: 100%;
}
.anor_fn_add_item textarea:focus,
.anor_fn_add_item input[type="text"]:focus{
	background-color: transparent;
	border-color: #777;
}
.anor_fn_add_item textarea{
	line-height: 1.5;
	padding: 6px 10px;
	height: 100px;
}
.anor_fn_add_item .fn_desc{
	width: 100%;
	font-size: 14px;
	color: #777;
	margin-bottom: 31px;
	margin-top: 7px;
}
.anor_fn_add_item .filters{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -30px;
}
.anor_fn_add_item .filter{
	width: auto;
	margin: 0;
	padding: 0;
	padding-left: 30px;
}
.anor_fn_add_item .field.col8{width: 66.6666%;}
.anor_fn_add_item .field.col4{width: 33.3333%;}
/*------------------------------------------------------------------*/
/*	36) Add button
/*------------------------------------------------------------------*/
.anor_fn_add_btn{
	padding: 0 20px 0 50px;
	line-height: 48px;
	display: block;
	width: 100%;
	text-decoration: none;
	border: 1px solid #bbb;
	border-radius: 10px;
	font-size: 16px;
	color: var(--heading-color);
	position: relative;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.anor_fn_add_btn .icon{
	display: block;
	position: absolute;
	top: 50%;
	left: 20px;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background-color: #eee;
}
.anor_fn_add_btn .icon:after{
	width: 2px;
	height: 10px;
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -5px;
	left: 50%;
	margin-left: -1px;
	background-color: #bbb;
}
.anor_fn_add_btn .icon:before{
	width: 10px;
	height: 2px;
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -1px;
	left: 50%;
	margin-left: -5px;
	background-color: #bbb;
}
.anor_fn_add_item .links{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_add_item .cancel{
	text-decoration: none;
	font-size: 16px;
	color: #777;
}
.anor_fn_add_item .cancel:hover{
	color: #222;
}
.anor_fn_add_item .add{
	padding: 0 20px;
	margin-right: 20px;
	font-size: 16px;
}
.anor_fn_add_item .add:after{
	border-width: 2px;
}
/*------------------------------------------------------------------*/
/*	37) Sign In & Sign Up Form Pages
/*------------------------------------------------------------------*/
.anor_fn_sign_up .sign_up,
.anor_fn_sign_in .sign_in{
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 95px 0 144px;
}
.anor_fn_sign_up .title_holder,
.anor_fn_sign_in .title_holder{
	text-align: center;
}
.anor_fn_sign_up .title_holder .fn_title,
.anor_fn_sign_in .title_holder .fn_title{
	margin: 0;
	padding: 0;
	font-size: 30px;
	margin-bottom: 3px;
}
.anor_fn_sign_up .title_holder .fn_desc,
.anor_fn_sign_in .title_holder .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: var(--body-color);
	font-family: var(--extra-font-family);
	margin-bottom: 41px;
}
.anor_fn_sign_up .field,
.anor_fn_sign_in .field{
	display: block;
	width: 100%;
	font-size: 16px;
	color: var(--heading-color);
	font-weight: 400;
	margin-bottom: 4px;
}
.anor_fn_sign_up input[type="email"],
.anor_fn_sign_up input[type="text"],
.anor_fn_sign_up input[type="password"],
.anor_fn_sign_in input[type="email"],
.anor_fn_sign_in input[type="text"],
.anor_fn_sign_in input[type="password"]{
	width: 100%;
    padding: 0 10px;
    height: auto;
    line-height: 48px;
    border: 1px solid #bbb;
    border-radius: 10px;
    outline: none;
    background-color: transparent;
    font-size: 16px;
    display: block;
    min-width: 100%;
    max-width: 100%;
	margin-bottom: 26px;
}
.anor_fn_sign_up .sign-up-button,
.anor_fn_sign_in .sign-in-button{
	width: 100%;
	font-size: 16px;
	line-height: 50px;
	margin-bottom: 26px;
}
.anor_fn_sign_up .fn_desc,
.anor_fn_sign_in .fn_desc{
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: var(--body-color);
}
.anor_fn_sign_up .fn_desc a,
.anor_fn_sign_in .fn_desc a{
	text-decoration: none;
	color: var(--main-color);
	border-bottom: 1px solid transparent;
}
.anor_fn_sign_up .fn_desc a:hover,
.anor_fn_sign_in .fn_desc a:hover{
	border-bottom-color: var(--main-color);
}
.anor_fn_sign_up .checkbox,
.anor_fn_sign_in .checkbox{
	margin-bottom: 27px;
	margin-top: 2px;
}
/*------------------------------------------------------------------*/
/*	38) Collection Information
/*------------------------------------------------------------------*/
.fn__collection_info{
	width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    position: relative;
}
.fn__collection_info .img_holder img{
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fn__collection_info .author_img{
	width: 120px;
	min-width: 120px;
	margin-right: 20px;
	position: relative;
}
.fn__collection_info .author_img img{
	border-radius: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
}
.fn__collection_info .author_img .icon{
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: var(--main-color);
	bottom: 0;
	right: 12.5%;
	color: #fff;
	z-index: 6;
}
.fn__collection_info .author_img .icon .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
}
.fn__collection_info .fn_title{
	margin: 0;
	padding: 0;
	font-size: 24px;
}
.fn__collection_info p{
	margin: 0;
	padding: 0;
	font-size: 16px;
}
.fn__collection_info p a{
	color: var(--heading-color);
	text-decoration: none;
}
.fn__collection_info p a:hover{
	color: var(--main-color);
}
/*------------------------------------------------------------------*/
/*	39) Collection Single Page
/*------------------------------------------------------------------*/
.anor_fn_collection_bg{
	height: 400px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.anor_fn_collection_header{
	padding: 30px 0;
	background-color: #f5f5f5;
	margin-bottom: 40px;
}
.anor_fn_collection_header .coll_header{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
.anor_fn_collection_header .left_part{
	padding-right: 30px;
}
.anor_fn_collection_header .right_part{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	justify-content: flex-end;
}
.anor_fn_collection_header .right_part > *{
	margin: 5px 0 5px 10px;
}
.anor_fn_collection_header .anor_fn_follow{
	padding: 0 20px;
	line-height: 50px;
	color: #777;
}
.anor_fn_collection_header .anor_fn_follow:after{
	border-color: #bbb;
}
.anor_fn_collection_header .anor_fn_follow .plus{
	width: 16px;
	height: 16px;
}
.anor_fn_collection_header .anor_fn_follow .plus:before{
	width: 16px;
	height: 2px;
	top: 7px;
	background-color: #777;
}
.anor_fn_collection_header .anor_fn_follow .plus:after{
	width: 2px;
	height: 16px;
	left: 7px;
	background-color: #777;
}
.anor_fn_collection_header .anor_fn_follow:hover{
	color: #fff;
}
.anor_fn_collection_header .anor_fn_follow:hover .plus:before,
.anor_fn_collection_header .anor_fn_follow:hover .plus:after{
	background-color: #fff;
}
.action_collection{
	position: relative;
}
.action_collection .action_btn{
	text-decoration: none;
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 100%;
	border: 2px solid #bbb;
}
.action_collection.opened .action_btn,
.action_collection .action_btn:hover{
	border-color: #777;
}
.action_collection .action_btn span{
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -2px;
	background-color: #777;
	border-radius: 100%;
}
.action_collection .action_btn span:after,
.action_collection .action_btn span:before{
	content: '';
	display: block;
	position: absolute;
	width: 4px;
	height: 4px;
	background-color: #777;
	border-radius: 100%;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
	top: 0;
}
.action_collection .action_btn span:after{
	right: 100%;
	margin-right: 5px;
}
.action_collection .action_btn span:before{
	left: 100%;
	margin-left: 5px;
}
.action_collection .action_popup{
	width: 150px;
    height: auto;
    padding: 15px 20px 13px;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: var(--heading-color);
    line-height: 1.5;
    top: 100%;
    right: 0;
    position: absolute;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    border: 1px solid #ddd;
    box-shadow: 0px 5px 30px rgb(0 0 0 / 20%);
	z-index: 2;
}
.action_collection.opened .action_popup{
	opacity: 1;
    visibility: visible;
    transform: translateY(20px);
}
.action_collection.opened .action_btn span:after{
	top: -9px;
    margin-right: -4px;
}
.action_collection.opened .action_btn span:before{
	top: 9px;
    margin-left: -4px;
}
.action_collection .action_popup ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.action_collection .action_popup li{
	margin-bottom: 8px;
}
.action_collection .action_popup li:last-child{
	margin-bottom: 0px;
}
.action_collection .action_popup a{
	text-decoration: none;
	color: #777;
	display: block;
}
.action_collection .action_popup a:hover{
	color: var(--heading-color);
}
/*------------------------------------------------------------------*/
/*	40) Boxed Counter
/*------------------------------------------------------------------*/
.anor_fn_boxed_counter ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	flex-wrap: wrap;
	margin-left: -40px;
}
.anor_fn_boxed_counter li{
	margin: 0;
	padding: 0;
	padding-left: 40px;
	margin-bottom: 40px;
	width: 25%;
}
.anor_fn_boxed_counter .item{
	border: 2px solid #ddd;
	width: 100%;
	text-align: center;
	padding: 25px 20px 24px;
	border-radius: 10px;
	transition: all .3s ease;
	height: 100%;
	transform: translateZ(0);
}
.anor_fn_boxed_counter .item:hover{
	border-color: var(--main-color);
	transform: translateY(-5px) translateZ(0);
}
.anor_fn_boxed_counter .fn_title{
	font-size: 30px;
	margin: 0;
	padding: 0;
	margin-bottom: 1px;
}
.anor_fn_boxed_counter .fn_desc{
	font-size: 16px;
	margin: 0;
	padding: 0;
	color: #777;
}
/*------------------------------------------------------------------*/
/*	41) Hiddenable Text
/*------------------------------------------------------------------*/
.anor_fn_hide_text{
	position: relative;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 113px;
	margin-top: -6px;
}
.anor_fn_hide_text.ready{
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; 	/* number of lines to show */
	max-height: 48px;       /* fallback */
}
.anor_fn_hide_text p{
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	font-family: var(--extra-font-family);
	margin-bottom: 18px;
}
.anor_fn_hide_text p:last-child{
	margin-bottom: 0;
}
.anor_fn_hide_text a{
	text-decoration: none;
	color: var(--main-color);
	position: relative;
	font-size: inherit;
	line-height: inherit;
	right: 0;
	bottom: 0;
	background-color: var(--body-background-color);
	display: inline-block;
}
.anor_fn_hide_text a:after{
	left: 0px;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: transparent;
	content: '';
	position: absolute;
	transition: all .3s ease;
}
.anor_fn_hide_text a:hover:after{
	background-color: var(--main-color);
}
.anor_fn_hide_text.ready a{
	position: absolute;
	padding-left: 20px;
}
.anor_fn_hide_text.ready a:after{
	left: 20px;
}
.anor_fn_hide_text.enough a{
	display: none;
}
/*------------------------------------------------------------------*/
/*	42) Chart
/*------------------------------------------------------------------*/
.anor_fn_activity_graph .graph_top{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 40px;
}
.anor_fn_activity_graph .top_item{
	margin: 0 10px 10px 0;
}
.anor_fn_activity_graph .top_item p{
	margin: 0;
	padding: 0 15px;
	line-height: 40px;
	background-color: #eee;
	border-radius: 5px;
	color: #777;
	font-size: 16px;
	font-weight: 400;
}
.anor_fn_activity_graph .top_item p span{
	font-weight: 600;
	color: var(--heading-color);
}
.anor_fn_activity_graph .graph_bottom{
	padding: 0 40px 40px 40px;
}
.anor_fn_activity_graph .graph_bottom canvas{
	max-width: 100% !important;
}
#chartjs-tooltip{
	background-color: rgba(0,0,0,.9);
	padding: 10px;
	border-radius: 5px;
	width: 120px;
	text-align: center;
	transition: all .5s ease;
	transform: translateX(-50%) translateY(-120%);
	z-index: 5;
}
#chartjs-tooltip:after{
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border: 5px solid transparent;
	margin-top: -1px;
	border-top-color: rgba(0,0,0,.9);
}
#chartjs-tooltip .fn_title{
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	font-family: var(--heading-font-family);
}
#chartjs-tooltip p{
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 400;
	color: #bbb;
	margin-bottom: 3px;
	font-family: var(--heading-font-family);
}
/*------------------------------------------------------------------*/
/*	43) Blog Page
/*------------------------------------------------------------------*/
.anor_fn_blog .page_title_holder{
	padding: 95px 0 55px;
}
.anor_fn_blog .page_title_holder .fn_title{
	margin: 0;
	padding: 0;
	font-size: 30px;
	color: var(--heading-color);
	margin-bottom: 7px;
	text-align: center;
}
.anor_fn_blog .page_title_holder .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #666;
	font-family: var(--extra-font-family);
	text-align: center;
}
.anor_fn_blog_list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -45px;
	flex-wrap: wrap;
}
.anor_fn_blog_list .list_item{
	margin: 0;
	padding: 0;
	width: 33.3333%;
	padding-left: 45px;
	margin-bottom: 40px;
}
.anor_fn_blog_list .img_holder{
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.anor_fn_blog_list img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.anor_fn_blog_list .title_holder{
	width: 100%;
	padding: 21px 0px 14px;
}
.anor_fn_blog_list .fn_title{
	font-size: 22px;
	margin: 0;
	padding: 0;
	margin-bottom: 9px;
}
.anor_fn_blog_list p{
	font-size: 16px;
	margin: 0;
	padding: 0;
	color: #777;
}
/*------------------------------------------------------------------*/
/*	44) Pagination
/*------------------------------------------------------------------*/
.anor_fn_pagination{
	margin-bottom: 145px;
}
.anor_fn_pagination ul{
	margin: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 0;
	list-style-type: none;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-left: -10px;
}
.anor_fn_pagination li{
	margin: 0 0 5px 0;
	padding: 0;
	padding-left: 10px;
}
.anor_fn_pagination span,
.anor_fn_pagination a{
	text-decoration: none;
	width: 40px;
	height: 40px;
	display: block;
	text-align: center;
	line-height: 38px;
	border: 1px solid #bbb;
	color: var(--heading-color);
	font-size: 14px;
	font-weight: 600;
	border-radius: 5px;
	transition: all .3s ease;
}
.anor_fn_pagination .current{
	border-color: #ddd;
	color: #777;
	background-color: #f5f5f5;
}
.anor_fn_pagination span:hover,
.anor_fn_pagination a:hover{
	border-color: #777;
	transform: translateY(-3px);
}
.anor_fn_pagination.multiple span,
.anor_fn_pagination.multiple a{
	min-width: 80px;
	width: auto;
	padding: 0 10px;
}
/*------------------------------------------------------------------*/
/*	45) Discover Page
/*------------------------------------------------------------------*/
.anor_fn_discover .page_title_holder{
	width: 100%;
	margin: 0 auto;
	max-width: 500px;
	padding: 95px 0 55px;
	position: relative;
	z-index: 10;
}
.anor_fn_discover .page_title_holder .fn_title{
	margin: 0;
    padding: 0;
    font-size: 30px;
    color: var(--heading-color);
    margin-bottom: 7px;
	text-align: center;
}
.anor_fn_discover .page_title_holder .fn_desc{
	margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--body-color);
    font-family: var(--extra-font-family);
	margin-bottom: 20px;
	text-align: center;
}
.anor_fn_discover .page_title_holder .filters{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-left: -10px;
}
.anor_fn_discover .page_title_holder .filters > *{
	padding-left: 10px;
	margin: 5px 0;
}
/*------------------------------------------------------------------*/
/*	46) Blog Single
/*------------------------------------------------------------------*/
.anor_fn_blog_single{
	padding: 100px 0 150px;
}
.anor_fn_blog_single .img_holder{
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	margin-bottom: 43px;
}
.anor_fn_blog_single .img_holder img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.anor_fn_blog_single .blog_container{
	max-width: 800px;
	margin: 0 auto;
}
.anor_fn_blog_single .title_holder{
	padding-bottom: 44px;
	border-bottom: 2px solid var(--main-color);
	margin-bottom: 50px;
}
.anor_fn_blog_single .title_holder .fn_title{
	margin: 0px;
	padding: 0;
	font-size: 36px;
	margin-bottom: 10px;
}
.anor_fn_blog_single .title_holder .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #777;
}
.anor_fn_blog_single .blog_content p{
	margin: 0;
	padding: 0;
	font-size: 18px;
	color: var(--body-color);
	font-family: var(--extra-font-family);
	line-height: 30px;
	margin-bottom: 33px;
}
.anor_fn_blog_single .blog_content p a{
	border-bottom: 1px solid transparent;
	color: var(--main-color);
	text-decoration: none;
}
.anor_fn_blog_single .blog_content p a:hover{
	border-bottom-color: var(--main-color);
}
.anor_fn_blog_single .blog_content > *:last-child{
	margin-bottom: 0;
}
.anor_fn_blog_single .blog_content h4{
	margin: 0;
	padding: 0;
	font-size: 24px;
	margin-bottom: 33px;
}
.anor_fn_blog_single .blog_content ol{
	list-style-position: inside;
	margin: 0 0 38px 30px;
}
.anor_fn_blog_single .blog_content ol p{
	display: inline;
}
.anor_fn_blog_single .blog_content li{
	margin-bottom: 3px;
}
.anor_fn_blog_single .blog_content li:last-child{
	margin-bottom: 0;
}
/*------------------------------------------------------------------*/
/*	47) Author Information Box (used for single page of the blog)
/*------------------------------------------------------------------*/
.anor_fn_author_info{
	background-color: #eee;
	border-radius: 5px;
	padding: 40px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: center;
	align-items: center;
	margin: 42px 0 27px 0;
}
.anor_fn_author_info .info_img{
	border-radius: 5px;
	overflow: hidden;
	margin-right: 40px;
	width: 25%;
	min-width: 25%;
}
.anor_fn_author_info .info_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.anor_fn_author_info .fn_title{
	margin: 0;
	padding: 0;
	font-size: 20px;
	margin-bottom: 17px;
}
.anor_fn_author_info .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 26px;
	color: #777;
	font-family: var(--extra-font-family);
	margin-bottom: 18px;
}
.anor_fn_author_info .social{
	margin: 0;
    padding: 0;
    list-style-type: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
}
.anor_fn_author_info .social li{
	margin: 5px 28px 5px 0;
    padding: 0;
}
.anor_fn_author_info .social a{
	color: #777;
	font-size: 20px;
	display: block;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}
.anor_fn_author_info .social a i{
	transition: none;
}
.anor_fn_author_info .social a i:before{
	margin: 0;
	padding: 0;
	display: block;
	width: inherit;
}
.anor_fn_author_info .social a:hover{
	color: var(--heading-color);
}
/*------------------------------------------------------------------*/
/*	48) Tags
/*------------------------------------------------------------------*/
.anor_fn_tags{
	font-size: 16px;
	margin-bottom: 54px;
}
.anor_fn_tags b{
	color: var(--heading-color);
	text-transform: uppercase;
}
.anor_fn_tags span{
	color: var(--main-color);
}
.anor_fn_tags a{
	font-size: inherit;
	text-decoration: none;
	color: var(--main-color);
	border-bottom: 1px solid transparent;
}
.anor_fn_tags a:hover{
	border-bottom-color: var(--main-color);
}
/*------------------------------------------------------------------*/
/*	49) Previous & Next Box
/*------------------------------------------------------------------*/
.anor_fn_prevnext{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.anor_fn_prevnext > *{
	width: 50%;
	background-color: #eee;
	border-radius: 5px;
	position: relative;
	padding: 37px 40px 33px;
	transition: all .3s ease;
}
.anor_fn_prevnext > *:hover{
	background-color: #dedede;
}
.anor_fn_prevnext .prev{
	margin-right: 2px;
	text-align: left;
}
.anor_fn_prevnext .next{
	margin-left: 2px;
	text-align: right;
}
.anor_fn_prevnext p{
	font-size: 16px;
	color: #777;
	margin-bottom: 5px;
}
.anor_fn_prevnext h3{
	margin: 0;
	padding: 0;
	font-size: 20px;
	transition: all .3s ease;
}
.anor_fn_prevnext > *:hover h3{
	color: var(--main-color);
}
/*------------------------------------------------------------------*/
/*	50) Ranking Page
/*------------------------------------------------------------------*/
.anor_fn_ranking_page .page_title_holder{
	padding: 95px 0 55px;
}
.anor_fn_ranking_page .page_title_holder .fn_title{
	margin: 0;
    padding: 0;
    font-size: 30px;
    color: var(--heading-color);
    margin-bottom: 7px;
    text-align: center;
}
.anor_fn_ranking_page .page_title_holder .fn_desc{
	margin: 0;
    padding: 0;
    font-size: 16px;
    color: #666;
    font-family: var(--extra-font-family);
    text-align: center;
	margin-bottom: 20px;
}
.anor_fn_ranking_page .page_title_holder .filters{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
	position: relative;
	z-index: 5;
}
.anor_fn_ranking_page .page_title_holder .filters > *{
	padding-left: 10px;
    margin: 5px 0;
}
.ranking_collection{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.ranking_collection .fn_counter{
	font-size: 18px;
	color: var(--heading-color);
	font-weight: 600;
	padding: 0 5px;
	text-align: center;
	width: 36px;
	min-width: 36px;
}
.ranking_collection .item__short .img_holder img{
	border-radius: 100%;
}
.anor_fn_sortable_rankings table{
	border: none;
	color: var(--heading-color);
	margin-bottom: 40px;
}
.anor_fn_sortable_rankings thead{
	font-weight: 600;
	position: sticky;
	top: 0px;
	background-color: var(--body-background-color);
	border-bottom: 1px solid #bbb;
	z-index: 3;
}
.anor_fn_sortable_rankings table thead td{
	padding: 13px 10px 13px 0;
	border: none;
	font-size: 18px;
}
.anor_fn_sortable_rankings table thead tr{
	border: none;
}
.anor_fn_sortable_rankings table tbody tr{
	border: none;
	border-bottom: 1px solid #ddd;
}
.anor_fn_sortable_rankings table tbody td{
	border: none;
	padding: 20px 10px 20px 0;
	vertical-align: middle;
}
.anor_fn_sortable_rankings .value{
	color: var(--heading-color);
	font-weight: 400;
}
.anor_fn_sortable_rankings .value.increase{
	color: var(--main-color);
}
.anor_fn_sortable_rankings .value.decrease{
	color: #ff0000;
}
/*------------------------------------------------------------------*/
/*	51) PRODUCT Page
/*------------------------------------------------------------------*/
.anor_fn_product_info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding-top: 70px;
}
.anor_fn_product_info .product_left{
	width: 42%;
	padding-bottom: 60px;
}
.anor_fn_product_info .product_img{
	width: 100%;
	position: relative;
	border-radius: 10px;
}
.anor_fn_product_info .product_img:after{
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #bbb;
	border-radius: 10px;
}
.anor_fn_product_info .product_img .img_holder{
	position: relative;
	z-index: 2;
	border-radius: 10px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	overflow: hidden;
}
.anor_fn_product_info .product_img .img_holder img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.anor_fn_product_info .img_bottom{
	position: relative;
	z-index: 5;
	padding: 10px 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
.anor_fn_product_info .product_action{
	position: relative;
}
.product_action .action_btn{
	text-decoration: none;
	width: 40px;
	height: 40px;
	position: relative;
	display: block;
	border-radius: 100%;
	border: 2px solid transparent;
}
.product_action.opened .action_btn,
.product_action .action_btn:hover{
	border-color: #777;
}
.product_action .action_btn span{
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -2px;
	background-color: #777;
	border-radius: 100%;
}
.product_action .action_btn span:after,
.product_action .action_btn span:before{
	content: '';
	display: block;
	position: absolute;
	width: 4px;
	height: 4px;
	background-color: #777;
	border-radius: 100%;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
	top: 0;
}
.product_action .action_btn span:after{
	right: 100%;
	margin-right: 5px;
}
.product_action .action_btn span:before{
	left: 100%;
	margin-left: 5px;
}
.product_action .action_popup{
	width: 150px;
    height: auto;
    padding: 15px 20px 13px;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: var(--heading-color);
    line-height: 1.5;
    bottom: 100%;
    right: 0;
    position: absolute;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-25px);
    border: 1px solid #ddd;
    box-shadow: 0px 5px 30px rgb(0 0 0 / 20%);
}
.product_action.opened .action_popup{
	opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}
.product_action.opened .action_btn span:after{
	top: -9px;
    margin-right: -4px;
}
.product_action.opened .action_btn span:before{
	top: 9px;
    margin-left: -4px;
}
.product_action .action_popup ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.product_action .action_popup li{
	margin-bottom: 8px;
}
.product_action .action_popup li:last-child{
	margin-bottom: 0px;
}
.product_action .action_popup a{
	text-decoration: none;
	color: #777;
	display: block;
}
.product_action .action_popup a:hover{
	color: var(--heading-color);
}
.anor_fn_product_info .product_desc{
	padding: 50px 0 34px;
}
.anor_fn_product_info .product_desc .fn_title{
	margin: 0;
	padding: 0;
	font-size: 30px;
	margin-bottom: 12px;
}
.anor_fn_product_info .hide_me{
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-height: 66px;
	overflow: hidden;
	-webkit-mask: linear-gradient(rgb(255, 255, 255) 45%, transparent);
	margin-bottom: 6px;
}
.anor_fn_product_info .ready .hide_me{
	text-overflow: ellipsis;
    display: block;
    max-height: inherit;
	overflow: hidden;
	-webkit-mask: none;
	margin-bottom: 6px;
}
.anor_fn_product_info .hide_text p{
	line-height: 22px;
	font-size: 16px;
	margin-bottom: 15px;
}
.anor_fn_product_info .hide_text p:last-child{
	margin-bottom: 0;
}
.anor_fn_product_info .hide_text .show_more{
	text-decoration: none;
	font-size: 12px;
	color: #777;
	text-transform: uppercase;
}
.anor_fn_product_info .hide_text .show_more:hover{
	color: var(--heading-color);
}
.product_table_list table,
.product_table_list tr,
.product_table_list td{
	border: none;
	padding: 0;
}
.product_table_list td:first-child{
	font-weight: 600;
	color: var(--heading-color);
}
.product_table_list td{
	font-size: 18px;
	padding: 3px 20px 3px 0;
	line-height: 1.5;
	color: #777;
}
.product_table_list td.p{
	padding-bottom: 33px;
}
.product_table_list a{
	text-decoration: none;
	color: var(--main-color);
}
/* Product Single Right */
.anor_fn_product_info .product_right{
	width: 58%;
	padding-left: 50px;
}
.anor_fn_product_info .price_box{
	border-radius: 10px;
	background-color: #eee;
}
.anor_fn_product_info .price_top{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: relative;
}
.anor_fn_product_info .price_top_left{
	padding: 47px 50px 36px 50px;
	width: 50%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: space-between;
}
.anor_fn_product_info .price_top_right{
	padding: 47px 50px 36px 50px;
	width: 50%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: space-between;
}
.anor_fn_product_info .price_top:after{
	left: 50%;
	margin-left: -0.5px;
	background-color: #ddd;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
}
.anor_fn_product_info .price_top .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #777;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.anor_fn_product_info .price_top .fn_title{
	margin: 0;
	padding: 0;
	font-size: 36px;
	margin-bottom: 2px;
}
.anor_fn_product_info .price_top_right .fn_title{
	font-size: 18px;
}
.anor_fn_product_info .price_top .fn_desc2{
	margin: 0;
	padding: 0;
	font-size: 16px;
}
.anor_fn_product_info .price_bottom{
	border-top: 1px solid #ddd;
	padding: 40px 50px 30px 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_product_info .price_bottom a{
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 0 63px;
}
.anor_fn_product_info .bid_box{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	padding: 30px 0;
}
.anor_fn_product_info .bid_box .text{
	color: #777;
	font-size: 18px;
}
.anor_fn_product_info .bid_box .price{
	line-height: 29px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	background-color: var(--main-color);
	border-radius: 3px;
	padding: 0 8px;
}
.anor_fn_product_info .bid_box .price_rate{
	display: inline-block;
    margin-left: 7px;
}
.anor_fn_product_info .bid_box .fn__svg{
	width: 13px;
	height: 13px;
	display: block;
	transform: rotate(-90deg);
	color: #777;
}
.anor_fn_product_info .bid_box .increase .fn__svg{
	color: var(--main-color);
}
.anor_fn_product_info .bid_box .decrease .fn__svg{
	color: #ff0000;
	transform: rotate(90deg);
}
.anor_fn_product_info .bid_box .refresh_button{
	display: block;
	width: 40px;
	height: 40px;
	position: relative;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	border-radius: 100%;
}
.anor_fn_product_info .bid_box .refresh_button .fn__svg{
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -9px;
	transform: rotate(-8deg);
}
.anor_fn_product_offers .offer_header{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    -ms-align-items: center;
    align-items: center;
	padding: 12px 30px;
    background-color: #eee;
}
.anor_fn_product_offers .item_from{
	width: 42%;
}
.anor_fn_product_offers .item_price{
	width: 30%;
}
.anor_fn_product_offers .item_expiration{
	width: 28%;
}
.anor_fn_product_offers .offer_content{
    width: 100%;
}
.anor_fn_product_offers .offer_item{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
	padding: 20px 30px;
	border-bottom: 1px solid #ddd;
}
.anor_fn_product_offers .offer_item:last-child{
	border-bottom: none;
}
.anor_fn_product_offers .item__short .img_holder img{
	border-radius: 100%;
}
.anor_fn_product_offers .item__short .fn_title{
	font-weight: 400;
}
#popular_items{
	padding: 0 0 150px;
}
#more_items_from_collection{
	padding: 150px 0;
}
.anor_fn_product_page .anor_fn_slider_title .fn_title{
	font-size: 30px;
}
.anor_fn_product_activity .filters{
	padding: 15px 30px 10px;
	border-top: 1px solid #ddd;
	position: relative;
	z-index: 3;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}
.anor_fn_product_activity .filters > *{
	margin: 0 5px 5px 0;
}
.anor_fn_product_activity .filters .filter{
	position: relative;
}
.anor_fn_product_activity .filters .filter_opener{
	position: relative;
	background-color: #eee;
	border-radius: 3px;
	display: block;
	text-decoration: none;
	padding: 0 15px 0 32px;
	line-height: 30px;
	white-space: nowrap;
	font-size: 14px;
	color: #777;
	text-transform: uppercase;
	box-shadow: 0px 1px 3px transparent;
}
.anor_fn_product_activity .filters .filter_opener:hover{
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
}
.anor_fn_product_activity .filters .filter_opener .icon{
	position: absolute;
	left: 15px;
	top: 10px;
	width: 12px;
	height: 9px;
	display: block;
}
.anor_fn_product_activity .filters .filter_opener .icon span{
	top: 0;
	left: 0;
	width: 12px;
	height: 1px;
	display: block;
	background-color: #777;
	position: absolute;
	transition: all .3s ease;
}
.anor_fn_product_activity .filters .filter_opener .icon span:before,
.anor_fn_product_activity .filters .filter_opener .icon span:after{
	content: '';
	height: 1px;
	position: absolute;
	left: 0;
	background-color: #777;
	transition: all .3s ease;
}
.anor_fn_product_activity .filters .filter_opener .icon span:after{
	width: 9px;
	top: 4px;
}
.anor_fn_product_activity .filters .filter_opener .icon span:before{
	width: 6px;
	top: 8px;
}
.anor_fn_product_activity .filters .opened .filter_list{
	opacity: 1;
	visibility: visible;
	transform: translateY(5px);
}
.anor_fn_product_activity .filters .opened .icon span{
	width: 6px;
}
.anor_fn_product_activity .filters .opened .icon span:before{
	width: 14px;
}
.anor_fn_product_activity .filters .filter_list{
	width: 200px;
    height: auto;
    padding: 15px 20px 13px;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: var(--heading-color);
    line-height: 1.5;
    top: 100%;
    left: 0;
    position: absolute;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border: 1px solid #ddd;
    box-shadow: 0px 5px 30px rgb(0 0 0 / 20%);
}
.anor_fn_product_activity .filters .filter_list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.anor_fn_product_activity .filters .filter_list li{
	margin-bottom: 8px;
}
.anor_fn_product_activity .filters .filter_list li:last-child{
	margin-bottom: 0px;
}
.anor_fn_product_activity .filters .filter_list a{
	text-decoration: none;
	color: #777;
	display: block;
}
.anor_fn_product_activity .filters .filter_list a.selected{
	opacity: .5;
}
.anor_fn_product_activity .filters .filter_list a:hover{
	color: var(--heading-color);
}
.anor_fn_product_activity .filters .selected_filter a{
	position: relative;
	background-color: #eee;
	border-radius: 3px;
	display: block;
	text-decoration: none;
	padding: 0 32px 0 10px;
	line-height: 30px;
	white-space: nowrap;
	font-size: 14px;
	color: var(--heading-color);
	box-shadow: 0px 1px 3px transparent;
}
.anor_fn_product_activity .filters .selected_filter a:hover{
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
}
.anor_fn_product_activity .filters .selected_filter a:after{
	width: 1px;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 21px;
	background-color: #ddd;
}
.anor_fn_product_activity .filters .selected_filter .fn__svg{
	width: 7px;
	height: 7px;
	display: block;
	position: absolute;
	right: 7px;
	top: 12px;
	color: #777;
}
.anor_fn_product_activity .pa_header{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    -ms-align-items: center;
    align-items: center;
    padding: 12px 30px;
    background-color: #eee;
}
.anor_fn_product_activity .item{
	width: 20%;
}
.anor_fn_product_activity .pa_item{
    width: 100%;
    -ms-align-items: center;
    align-items: center;
    padding: 12px 30px;
	border-bottom: 1px solid #ddd;
	display: none;
}
.anor_fn_product_activity .pa_item:last-child{
	border-bottom: none;
}
.anor_fn_product_activity .pa_item.active{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.anor_fn_product_activity .pa_item .item_price,
.anor_fn_product_activity .pa_item .item_event{
	font-size: 18px;
	font-weight: 600;
	color: var(--heading-color);
}
.anor_fn_product_activity .pa_item .item_to a,
.anor_fn_product_activity .pa_item .item_from a{
	text-decoration: none;
	color: var(--heading-color);
}
.anor_fn_product_activity .pa_item .item_to a:hover,
.anor_fn_product_activity .pa_item .item_from a:hover{
	color: var(--main-color);
}

/*------------------------------------------------------------------*/
/*	52) Accordion
/*------------------------------------------------------------------*/
.anor_fn_accordion{
	border: 2px solid #ddd;
	border-radius: 10px;
	margin-bottom: 30px;
}
.anor_fn_accordion .accordion_header{
    position: relative;
    padding: 20px 30px;
}
.anor_fn_accordion .accordion_header .text{
   line-height: 30px;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}
.anor_fn_accordion.closed .accordion_header .fn__svg{
	transform: rotate(180deg);
}
.anor_fn_accordion .accordion_header .fn__svg{
	width: 14px;
	height: 14px;
	position: absolute;
	color: #777;
	display: block;
	top: 50%;
	margin-top: -7px;
	right: 20px;
	transition: transform 100ms ease 0s;
}
.anor_fn_accordion .accordion_content{
	width: 100%;
	height: initial;
	overflow: visible;
	transition: height 100ms ease 0s;
}
.anor_fn_accordion.closed .accordion_content{
	height: 0;
	overflow: hidden;
}
/*------------------------------------------------------------------*/
/*	53) Similar: List
/*------------------------------------------------------------------*/
.anor_fn_list{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -40px;
}
.anor_fn_list > li{
	width: 33.3333%;
	padding-left: 40px;
	margin-bottom: 40px;
}

.anor_fn_list[data-cols="5"] > li{width: 20%;}
.anor_fn_list[data-cols="4"] > li{width: 25%;}
.anor_fn_list[data-cols="2"] > li{width: 50%;}
.anor_fn_list[data-cols="1"] > li{width: 100%;}


.anor_fn_list[data-gap="50"]{margin-left: -50px;}
.anor_fn_list[data-gap="50"] > li{padding-left: 50px; margin-bottom: 50px;}

.anor_fn_list[data-gap="45"]{margin-left: -45px;}
.anor_fn_list[data-gap="45"] > li{padding-left: 45px; margin-bottom: 45px;}

.anor_fn_list[data-gap="40"]{margin-left: -40px;}
.anor_fn_list[data-gap="40"] > li{padding-left: 40px; margin-bottom: 40px;}

.anor_fn_list[data-gap="35"]{margin-left: -35px;}
.anor_fn_list[data-gap="35"] > li{padding-left: 35px; margin-bottom: 35px;}

.anor_fn_list[data-gap="30"]{margin-left: -30px;}
.anor_fn_list[data-gap="30"] > li{padding-left: 30px; margin-bottom: 30px;}

.anor_fn_list[data-gap="25"]{margin-left: -25px;}
.anor_fn_list[data-gap="25"] > li{padding-left: 25px; margin-bottom: 25px;}

.anor_fn_list[data-gap="20"]{margin-left: -20px;}
.anor_fn_list[data-gap="20"] > li{padding-left: 20px; margin-bottom: 20px;}

.anor_fn_list[data-gap="15"]{margin-left: -15px;}
.anor_fn_list[data-gap="15"] > li{padding-left: 15px; margin-bottom: 15px;}

.anor_fn_list[data-gap="10"]{margin-left: -10px;}
.anor_fn_list[data-gap="10"] > li{padding-left: 10px; margin-bottom: 10px;}

.anor_fn_list[data-gap="5"]{margin-left: -5px;}
.anor_fn_list[data-gap="5"] > li{padding-left: 5px; margin-bottom: 5px;}

.anor_fn_list[data-gap="0"]{margin-left: 0px;}
.anor_fn_list[data-gap="0"] > li{padding-left: 0px; margin-bottom: 0px;}

.anor_fn_list[data-vspace="50"] > li{margin-bottom: 50px;}
.anor_fn_list[data-vspace="45"] > li{margin-bottom: 45px;}
.anor_fn_list[data-vspace="40"] > li{margin-bottom: 40px;}
.anor_fn_list[data-vspace="35"] > li{margin-bottom: 35px;}
.anor_fn_list[data-vspace="30"] > li{margin-bottom: 30px;}
.anor_fn_list[data-vspace="25"] > li{margin-bottom: 25px;}
.anor_fn_list[data-vspace="20"] > li{margin-bottom: 20px;}
.anor_fn_list[data-vspace="15"] > li{margin-bottom: 15px;}
.anor_fn_list[data-vspace="10"] > li{margin-bottom: 10px;}
.anor_fn_list[data-vspace="5"] > li{margin-bottom: 5px;}
.anor_fn_list[data-vspace="0"] > li{margin-bottom: 0px;}

/*------------------------------------------------------------------*/
/*	54) Trader Item
/*------------------------------------------------------------------*/
.fn__trader_item{
	border: 2px solid #ddd;
	border-radius: 10px;
	transition: all .3s ease;
}
.fn__trader_item:hover{
	border-color: var(--main-color);
	transform: translateY(-5px) translateZ(0);
}
.fn__trader_item .trader_top{
	position: relative;
	padding: 38px 20px 26px;
	text-align: center;
}
.fn__trader_item .trader_top .fn_title{
	margin: 0;
	padding: 0;
	font-size: 20px;
}
.fn__trader_item .author_img{
	position: relative;
	max-width: 180px;
	margin: 0 auto;
	margin-bottom: 16px;
}
.fn__trader_item .author_img img{
	border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 1px 3px rgb(0 0 0 / 20%);
}
.fn__trader_item .author_img .icon{
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: var(--main-color);
	bottom: 2.5%;
	right: 12.5%;
	color: #fff;
	z-index: 6;
}
.fn__trader_item .author_img .icon .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
}
.fn__trader_item .trader_bottom{
	border-top: 2px solid #ddd;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	text-align: center;
}
.fn__trader_item .bottom_left{
	width: 50%;
	padding: 17px 20px 14px;
	border-right: 1px solid #ddd;
}
.fn__trader_item .bottom_right{
	width: 50%;
	padding: 15px 20px;
	border-left: 1px solid #ddd;
}
.fn__trader_item .trader_bottom .fn_desc{
	font-size: 12px;
	margin: 0;
	padding: 0;
	color: #777;
	text-transform: uppercase;
	margin-bottom: 3px;
}
.fn__trader_item .trader_bottom .fn_title{
	font-size: 16px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	text-transform: uppercase;
}
#auction{
	padding: 50px 0 90px;
}
#collection{
	padding: 100px 0;
}
.anor_fn_slider_holder .fn__collection_item{
	margin-bottom: 73px;
}
#category{
	padding: 90px 0;
}
.anor_fn_category_slider .fn__category_item{
	margin-bottom: 73px;
}
#artist{
	padding: 100px 0;
}
.anor_fn_artist_slider .fn__artist_item{
	margin-bottom: 73px;
}
/*------------------------------------------------------------------*/
/*	55) 404 PAGE
/*------------------------------------------------------------------*/
.page_404{
	max-width: 500px;
	margin: 0 auto;
	padding: 130px 0 150px; 
}
.anor_fn_404{
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.anor_fn_404 .fn_title{
	margin: 0;
	padding: 0;
	font-size: 200px;
	font-size: 10.45vw;
	font-size: -moz-calc(50px + 7.8vw);
	font-size: -webkit-calc(50px + 7.8vw);
	font-size: -o-calc(50px + 7.8vw);
	font-size: calc(50px + 7.8vw);
	line-height: 1;
	margin-bottom: 11px;
}
.anor_fn_404 .fn_title2{
	margin: 0;
	padding: 0;
	font-size: 30px;
	margin-bottom: 8px;
}
.anor_fn_404 .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #666;
	font-family: var(--extra-font-family);
	margin-bottom: 39px;
}
.anor_fn_404 .anor_fn_button.small:after{
	border-width: 2px;
}
/*------------------------------------------------------------------*/
/*	56) Contact Page
/*------------------------------------------------------------------*/
.page_contact{
	max-width: 500px;
	margin: 0 auto;
	padding: 95px 0 124px; 
}
.anor_fn_contact .title_holder{
	margin-bottom: 41px;
}
.anor_fn_contact .title_holder .fn_title{
	margin: 0;
    padding: 0;
    font-size: 30px;
    color: var(--heading-color);
    margin-bottom: 7px;
    text-align: center;
}
.anor_fn_contact .title_holder .fn_desc{
	margin: 0;
    padding: 0;
    font-size: 16px;
    color: #666;
    font-family: var(--extra-font-family);
    text-align: center;
}
.anor_fn_contact .input_list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.anor_fn_contact .input_list li{
	margin: 0;
	padding: 0;
	margin-bottom: 26px;
}
.anor_fn_contact .input_list li:nth-last-child(2){
	margin-bottom: 30px;
}
.anor_fn_contact .input_list label{
	display: block;
	width: 100%;
	font-size: 16px;
	color: var(--heading-color);
	margin-bottom: 4px;
}
.anor_fn_contact .input_list textarea,
.anor_fn_contact .input_list input{
	display: block;
	width: 100%;
	min-width: 100%;
	min-width: inherit;
	height: 50px;
	line-height: 48px;
	border: 1px solid #bbb;
	border-radius: 15px;
	outline: none;
	padding: 0 10px;
	font-size: 16px;
}
.anor_fn_contact .input_list textarea:focus,
.anor_fn_contact .input_list input:focus{
	background-color: transparent;
	border-color: #777;
}
.anor_fn_contact .input_list textarea{
	height: 150px;
	padding: 10px;
	line-height: 1.5;
}
#send_message{
	width: 100%;
}
.anor_fn_contact .empty_notice{
	color: #F52225;
	margin-bottom: 7px;
	display: none;
	text-align: center;
	font-weight: 500;
}
.anor_fn_contact .contact_error{
	color: #F52225;
	text-align: center;
	font-weight: 500;
}
.anor_fn_contact .returnmessage{
	color:#3A00FF;
	margin-bottom: 7px;
	text-align: center;
	font-weight: 500;
}
/*------------------------------------------------------------------*/
/*	57) Flickity Slider
/*------------------------------------------------------------------*/
.flickity-viewport{
	padding-top: 5px;
}
[data-cols="6"] .carousel-cell{width: 16.6666%;}
[data-cols="5"] .carousel-cell{width: 20%;}
[data-cols="4"] .carousel-cell{width: 25%;}
[data-cols="3"] .carousel-cell{width: 33.3333%;}
[data-cols="2"] .carousel-cell{width: 50%;}
[data-cols="1"] .carousel-cell{width: 100%;}
.carousel-cell{
	width: 25%;
	margin-right: 40px;
}
.carousel-cell:last-child{
	margin-right: 0 !important;
}
.scrollBar{
	width: 100%;
	height: 3px;
	position: relative;
}
.scrollBar .full{
	height: 1px;
	width: 100%;
	top: 1px;
	left: 0;
	position: absolute;
	z-index: 1;
	background-color: #bbb;
}
.scrollBar .move{
	width: 25%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #222;
	z-index: 2;
}
.scrollBar .move[data-type="fill"]{
	width: 0;
}
/* if used safari browser */
.anor-safari .flickity_slider{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
}
.anor-safari .flickity_slider .carousel-cell{
	margin-right: 0;
	padding-left: 40px;
	margin-bottom: 40px;
}
.anor-safari .fn__blog_item .title_holder,
.anor-safari .anor_fn_item_slider .fn__single_item .title_holder,
.anor-safari .anor_fn_auction_slider .fn__single_item .title_holder{
	padding-bottom: 0;
}
.anor-safari .fn__blog_item,
.anor-safari .anor_fn_slider_holder .fn__collection_item,
.anor-safari .anor_fn_category_slider .fn__category_item,
.anor-safari .anor_fn_artist_slider .fn__artist_item{
	margin-bottom: 0;
}
.anor-safari .scrollBar{display: none;}
.anor-safari #category{padding-bottom: 0;}
.anor-safari #auction{padding-bottom: 0;}
.anor-safari #artist{padding-bottom: 0;}
.anor-safari #blog{padding-bottom: 160px;}
/*------------------------------------------------------------------*/
/*	58) Responsive
/*------------------------------------------------------------------*/
@media(max-width: 1400px){
	.anor_fn_slider_title .fn_title,
	.anor_fn_discover .disc_desc h3{font-size: 40px;}
	.anor_fn_list[data-cols="5"] > li,
	[data-cols="6"] .carousel-cell,
	[data-cols="5"] .carousel-cell{width: 25%;}
}
@media(max-width: 1250px){
	.anor_fn_header .header_left,
	.anor_fn_header .fn_logo{margin-right: 40px;}
	.anor_fn_slider_title .fn_title, .anor_fn_discover .disc_desc h3{
		font-size: 30px;
	}
	.fn__collection_item .fn_title,
	.fn__category_item .fn_title,
	.fn__artist_item .fn_title,
	.fn__blog_item .fn_title,
	.fn__single_item .title_holder .fn_title{
		font-size: 18px;
	}
	.anor_fn_header .main_menu{margin-left: -20px;}
	.anor_fn_header .main_menu > li{margin-left: 20px;}
}
@media(max-width: 1200px){
	.fn__collection_item p{font-size: 14px;}
	.anor_fn_discover .discover_left{
		padding-right: 50px;
	}
	.anor_fn_footer .link_list li{width: 33.3333%;}
	.anor_fn_add_item .field.col8{width: 100%;}
	.anor_fn_add_item .field.col4{width: 100%;}
	
	.anor_fn_list[data-cols="4"] > li,
	.anor_fn_list[data-cols="5"] > li,
	[data-cols="6"] .carousel-cell,
	[data-cols="5"] .carousel-cell,
	[data-cols="4"] .carousel-cell{width: 33.3333%;}
}
@media(max-width: 1040px){
	.anor_fn_discover{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_discover .discover_left{
		padding-right: 0;
		width: 100%;
		margin-bottom: 50px;
	}
	.anor_fn_discover .left_in{min-width: 100%;}
	.anor_fn_discover .discover_right{width: 100%;}
	.anor_fn_boxed_counter li{width: 50%;}
	.anor_fn_footer .ft_left{width: 100%;padding-right: 0;margin-bottom: 39px;}
	.anor_fn_footer .ft_right{width: 100%;}
	.anor_fn_footer .ft_in{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_blog_list .list_item{width: 50%;}
	.anor_fn_product_info{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_product_info .product_right{
		padding-left: 0;
		width: 100%;
	}
	.anor_fn_product_info .product_left{
		width: 100%;
	}
	.anor_fn_product_info .product_img{
		max-width: 600px;
	}
	.anor_fn_list[data-cols="3"] > li,
	.anor_fn_list[data-cols="4"] > li,
	.anor_fn_list[data-cols="5"] > li,
	[data-cols="6"] .carousel-cell,
	[data-cols="5"] .carousel-cell,
	[data-cols="4"] .carousel-cell,
	[data-cols="3"] .carousel-cell{width: 50%;}
}
@media(max-width: 768px){
	.ranking_collection .fn_counter{
		font-size: 14px;
		padding: 0 5px 0 0;
		width: 20px;
		text-align: left;
		min-width: 20px;
	}
	.anor_fn_sortable_rankings table tbody td{padding-right: 5px;}
	.anor_fn_sortable_rankings table thead td,
	.anor_fn_sortable_rankings table{font-size: 14px;}
	.anor_fn_icon_list .item{
		padding: 30px 30px 24px;
	}
	.anor_fn_searchpanel{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_searchpanel .search_right{margin-left: 0;}
	.anor_fn_sortable_rankings .row_items,
	.anor_fn_sortable_rankings .row_owners,
	.anor_fn_sortable_rankings .row_price{
		display: none;
	}
	.anor_fn_slider_title .fn_title,
	.anor_fn_discover .disc_desc h3{
		font-size: 30px;
	}
	.fn__collection_item .fn_title{font-size: 18px;}
	.anor_fn_activity_graph .graph_top{
		padding: 20px 20px 40px 20px;
	}
	.anor_fn_activity_graph .graph_bottom{
		padding: 0 20px 20px 20px;
	}
	.anor_fn_footer .fb_in{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_footer .fb_right{margin-left: 0;}
	.anor_fn_footer .totop{margin-left: auto;}
	.fn__activity_table .at_item:after{left: 20px;right: 20px;}
	.anor_fn_tabs .tab_header{padding: 20px;}
	.anor_fn_tabs .tab_list{padding: 20px;}
	.anor_fn_tabs.closed .filter_content{
		display: none;
	}
	.author_info_box .info_box{
		padding: 30px;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.author_info_box .author_img{width: 120px;min-width: 120px;margin-right: 20px;}
	.author_info_box .fn_title{font-size: 24px;}
	.anor_fn_tabs .tab_filter_wrapper{padding-left: 0;}
	.anor_fn_tabs .tab_filter{padding: 0 20px;}
	.anor_fn_product_page .anor_fn_slider_title .fn_title{
		margin-right: 0;
	}
	.anor_fn_slider_title{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.anor_fn_product_info .price_bottom a,
	.anor_fn_button{
		line-height: 40px;
		padding: 0 30px;
		font-size: 16px;
	}
	.anor_fn_product_info .price_top_left{
		padding: 27px 30px 16px 30px
	}
	.anor_fn_product_info .price_top_right{
		padding: 27px 30px 16px 30px;
	}
	.anor_fn_product_info .price_bottom{
		padding: 20px 30px 10px 30px;
	}
	.anor_fn_product_info .price_top .fn_title{
		font-size: 18px;
	}
	.anor_fn_collection_header .coll_header{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.anor_fn_collection_header .right_part{
		justify-content: flex-start;
		width: 100%;
	}
	.anor_fn_collection_header .left_part{
		width: 100%;
		padding-right: 0;
		margin-bottom: 35px;
	}
	[data-cols="6"] .carousel-cell,
	[data-cols="5"] .carousel-cell,
	[data-cols="4"] .carousel-cell,
	[data-cols="3"] .carousel-cell,
	[data-cols="2"] .carousel-cell,
	.anor_fn_list[data-cols="2"] > li,
	.anor_fn_list[data-cols="3"] > li,
	.anor_fn_list[data-cols="4"] > li,
	.anor_fn_list[data-cols="5"] > li{width: 100%;}
	.anor_fn_blog_list .list_item{width: 100%;}
	.anor_fn_add_item{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_add_item .preview_part{
		padding-right: 0;
		min-width: 100%;
	}
	.anor_fn_footer .link_list li{width: 50%;}
	.fn__activity_table .at_header,
	.fn__activity_table .at_item{padding-left: 20px;padding-right: 20px;}
	.anor_fn_tabs .tab_bottom{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_tabs .anor_fn_filters{width: 100%;min-width: 100%;}
	
	.anor_fn_product_activity .pa_content .item,
	.anor_fn_product_offers .offer_content .item{
		width: 100% !important;
		margin-bottom: 10px;
	}
	.anor_fn_product_activity .pa_content .item:last-child,
	.anor_fn_product_offers .offer_content .item:last-child{
		margin-bottom: 0;
	}
	.anor_fn_product_activity .pa_item,
	.anor_fn_product_offers .offer_item{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_product_activity .pa_content .item:empty{display: none;}
	
	.anor_fn_product_activity .pa_header,
	.anor_fn_product_offers .offer_header{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.anor_fn_product_activity .pa_header .item,
	.anor_fn_product_offers .offer_header .item{width: 100%;margin-bottom: 5px;}
	.anor_fn_product_activity .pa_header .item:last-child,
	.anor_fn_product_offers .offer_header .item:last-child{margin-bottom: 0px;}
	
	
	
}
@media(max-width: 480px){
	.anor_fn_sortable_rankings table tbody tr{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_sortable_rankings table{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.fn__activity_table .at_header{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.fn__activity_table .at_header .item{width: 100%;margin-bottom: 5px;}
	.fn__activity_table .at_header .item:last-child{margin-bottom: 0;}
	.anor_fn_product_page .anor_fn_slider_title .fn_title{font-size: 24px;}
	.anor_fn_filters .items > li.half{width: 100%;}
	.author_info_box .info_box{
		padding: 20px;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.author_info_box .author_img{
		margin-right: 0;
		margin-bottom: 20px;
	}
	.fn__activity_table .at_item .item{width: 100% !important;margin-bottom: 10px;}
	.fn__activity_table .at_item .item:last-child{margin-bottom: 0;}
	.fn__activity_table .at_item{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_product_info .price_top{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_product_info .price_top_left,
	.anor_fn_product_info .price_top_right{
		width: 100%;
	}
	.anor_fn_product_info .price_top:after{display: none;}
	.anor_fn_product_info .price_top_left{
		border-bottom: 1px solid #ddd;
	}
	.anor_fn_boxed_counter li{width: 100%;}
	.anor_fn_author_info{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
		padding: 30px 20px;
	}
	.anor_fn_author_info .info_img{
		width: 100%;
		max-width: 200px;
		margin-right: 0;
		margin-bottom: 26px;
	}
	.anor_fn_prevnext{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.anor_fn_prevnext > *{
		width: 100%;
		margin: 0;
		padding: 27px 20px 23px 20px;
	}
	.anor_fn_prevnext .prev{
		margin-right: 0;
		margin-bottom: 2px;
	}
	.anor_fn_prevnext .next{
		margin-left: 0;
		text-align: left;
	}
}
@media(max-width: 320px){
	.anor_fn_footer .link_list li{width: 100%;}
	.product_table_list tr{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.product_table_list td.p{padding-bottom: 3px;}
	.product_table_list td.p:last-child{padding-bottom: 33px;}
}
/* Intro Page */
#intro_features{
	padding: 140px 0 105px;
	border-bottom: 2px solid #ddd;
}
[class*="mw_"]{
	margin: 0 auto;
}
.mw_630{
	max-width: 630px;
}
.mw_600{
	max-width: 600px;
}
#intro_features .desc_holder{
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-bottom: 100px;
}
#intro_features .desc_holder img{
	margin-bottom: 42px;
}
#intro_features .desc_holder .fn_title{
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 15px;
}
#intro_features .desc_holder .fn_desc{
	margin: 0;
	padding: 0;
	font-family: var(--extra-font-family);
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 22px;
}
.anor_fn_features ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -45px;
}
.anor_fn_features li{
	width: 33.3333%;
	padding-left: 45px;
	margin-bottom: 45px;
}
.anor_fn_features .item{
	width: 100%;
	border-radius: 10px;
	border: 2px solid #ddd;
	padding: 45px 30px 38px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}
.anor_fn_features .item:hover{
	border-color: var(--main-color);
	transform: translateY(-5px) translateZ(0);
}
.anor_fn_features .icon{
	width: 140px;
	height: 140px;
	border-radius: 100%;
	background-color: #eee;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.anor_fn_features .icon .fn__svg{
	width: 60px;
	height: 60px;
	display: block;
	color: var(--heading-color);
}
.anor_fn_features .icon img{
	max-width: 60px;
}
.anor_fn_features .fn_title{
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 600;
}
#intro_list{
	padding: 140px 0 90px;
}
#intro_list .desc_holder{
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}
#intro_list .desc_holder .fn_title{
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 15px;
}
#intro_list .desc_holder .fn_desc{
	margin: 0;
	padding: 0;
	font-family: var(--extra-font-family);
	font-size: 16px;
	line-height: 22px;
}
.anor_fn_introlist ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -45px;
}
.anor_fn_introlist li{
	width: 33.3333%;
	padding-left: 45px;
	margin-bottom: 45px;
}
.anor_fn_introlist li.full{
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.anor_fn_introlist .item{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	position: relative;
	border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 19px;
}
.anor_fn_introlist .item:hover{
	transform: translateY(-10px);
	border-color: var(--main-color);
}
.anor_fn_introlist .item:hover .fn_title{
	color: var(--main-color);
}
.anor_fn_introlist img{
	border-bottom: 1px solid #ddd;
	transition: all .3s ease;
	margin-bottom: 27px;
}
.anor_fn_introlist .fn_title{
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all .3s ease;
}
/* *********************** */
#intro_footer{
	padding: 144px 0 150px;
	background-color: #eaf7eb;
}
#intro_footer .desc_holder{
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
#intro_footer .desc_holder .fn_title{
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 15px;
}
#intro_footer .desc_holder .fn_desc{
	margin: 0;
	padding: 0;
	font-family: var(--extra-font-family);
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 25px;
}
@media(max-width: 1040px){
	.anor_fn_features li,
	.anor_fn_introlist li{
		width: 50%;
	}
	#intro_features{
		padding: 90px 0 55px;
	}
	#intro_list{
		padding: 90px 0 40px;
	}
	#intro_footer{
		padding: 94px 0 100px;
	}
}
@media(max-width: 768px){
	.anor_fn_features li,
	.anor_fn_introlist li{
		width: 100%;
	}
}
.anor_fn_intro_tab .tab_switcher{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	list-style-type: none;
	padding: 0;
	justify-content: center;
	position: relative;
	margin-bottom: 60px;
}
.anor_fn_intro_tab .tab_switcher li{
	margin: 0;
	padding: 0;
	width: 50%;
	opacity: .5;
	background-color: #ddd;
}
.anor_fn_intro_tab .tab_switcher li:nth-child(1){
	border-radius: 30px 0 0  30px;
}
.anor_fn_intro_tab .tab_switcher li:nth-child(2){
	border-radius: 0 30px 30px 0;
}
.anor_fn_intro_tab .tab_switcher .active{
	opacity: 1;
}
.anor_fn_intro_tab .tab_switcher:after{
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -0.5px;
	width: 1px;
	background-color: var(--body-background-color);
	top: 0;
	bottom: 0;
}
.anor_fn_intro_tab .tab_switcher a{
	display: block;
	text-decoration: none;
	line-height: 60px;
	padding: 0 20px;
	color: var(--heading-color);
	text-align: center;
	font-size: 16px;
	font-family: var(--heading-font-family);
	font-weight: 500;
	letter-spacing: .5px;
	text-transform: uppercase;
}
.anor_fn_intro_tab .tab_item{
	display: none;
}
.anor_fn_intro_tab .tab_item.active{
	display: block;
	-webkit-animation: tab_animation 1s ease;
    -moz-animation: tab_animation 1s ease;
}
@-webkit-keyframes tab_animation {
      0% { opacity: 0; transform: rotateY(20deg) rotateZ(-3deg);}   
    100% { opacity: 1; transform: rotateY(0deg) rotateZ(0deg);}
}
@-moz-keyframes tab_animation {
      0% { opacity: 0;  transform: rotateY(20deg) rotateZ(-3deg);}   
    100% { opacity: 1; transform: rotateY(0deg) rotateZ(0deg);}
}