body {
	font-family: var(--primaryFont);
	color: var(--headingColor);
	font-size: var(--normalFontSize);
	background-color: var(--bodyColor);
}

.headContainer {
	margin-left: 25px;
	margin-right: 25px;
	margin-top: 1rem;
	font-weight: 800;
	color: var(--searchColor);
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus,
.btn-outline-secondary.focus, .btn-outline-secondary:focus
{
	box-shadow: none !important;
}

.strongFont {
	font-weight: 800;
}

.margin-auto{
	margin:0 auto;
}

header .bg-light {
	background-color: var(--headerColor) !important;
}

header .navbar-light .navbar-nav .nav-link {
	color: var(--navLinkColor);
}

header .navbar-light .navbar-nav .nav-link:focus,
header .navbar-light .navbar-nav .nav-link:hover {
	color: var(--navLinkHoverColor);
}

header .navbar-light .navbar-nav .active>.nav-link,
header .navbar-light .navbar-nav .nav-link.active,
header .navbar-light .navbar-nav .nav-link.show,
header .navbar-light .navbar-nav .show>.nav-link {
	color: var(--navLinkHoverColor);
}

header .navbar-expand-lg .navbar-nav .nav-link {
	padding-right: 1rem;
	padding-left: 1rem;
}

header .loginbtn {
	background-color: var(--loginBtnColor);
	border: none;
	color: var(--whiteColor);
	padding-right: 1rem;
	padding-left: 1rem;
	margin-right: 1rem;
}

header .loginbtn:hover {
	background-color: var(--secondaryColor);
}

header .navBarHeader {
	flex: 0 97%;
}

svg .logoIcon {
	fill: var(--logoHeaderIconColor);
}

svg .logoIcon-red {
	fill: red;
}

svg .logoText {
	fill: var(--logoHeaderTextColor);
}

header .navBarSearch {
	flex: 0 16%;
	background-color: var(--searchColor);
	align-items: center;
	display: flex;
	justify-content: center;
}

Header .searchIcon svg {
	fill: var(--whiteColor);
}

footer {
	background-color: var(--footerColor);
	color: var(--whiteColor);
}

footer ul.footerLinks li a {
	text-decoration: none;
	color: var(--whiteColor);
}

footer ul.footerLinks li a:hover {
	text-decoration: underline;
}

footer .footerAgencyLogo {
	margin: 30px 0;
}

footer .footerAgencyLogo svg {
	fill: var(--footerAgencySVGColor)
}

footer p.footerAboutHeading {
	font-weight: 500;
	margin-bottom: 0.2rem;
}

footer p.footerAboutDetail {
	font-size: var(--smallFontSize);
	width: 100%;
}

footer .socialMedia li a svg {
	fill: var(--whiteColor);
}

footer .socialMedia li a:hover svg {
	fill: var(--secondaryColor);
}

footer .copyrightFooter{
	text-align: center;
	font-size:12px;
}

footer .copyrightFooter  .footerLinks{
    text-align: center;
    justify-content: center !important ;
}

footer .copyrightFooter  .nav-link{    
    padding: .5rem !important;
}

.socialMedia .nav-link{
    padding: .5rem .5rem;
}


/* Pagination Css */

.page-link {
	color: var(--headingColor);
	background-color: transparent;
	border: none;
}

.page-link:hover,
.page-item.active .page-link {
	color: var(--headingColor);
	background-color: var(--secondaryColor);
	border: none;
}

.page-item.disabled .page-link {
	color: var(--headingColor);
	background-color: transparent;
}


/* End Pagination Css */

.pageContainer {
	min-height: calc(100vh - 331px);
}

.iconHolder div.active svg {
	fill: var( --secondaryColor);
}

.iconHolder svg {
	fill: var(--headingColor);
	width: 25px;
	height: 25px;
}

.iconHolder div {
	margin-right: 10px;
}
/* Artist Card */
.artistCards .flex-container {
	padding: 0;
	margin: 0;
	list-style: none;
	-ms-box-orient: horizontal;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
}

.artistCards .wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.artistCards .flex-item {
	background: var( --whiteColor);
	padding: 5px;
	/* height: auto; */
	height: 195px;
	margin: 27px 27px 13.5px 27px;
	flex: 0 100%;
	color: white;
	font-weight: bold;
	font-size: 2em;
	text-align: center;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

.artistCards .flex-item .card {
	border: none;
	cursor: pointer;
}

.artistCards .flex-item .card-body {
	padding: 0;
}

.artistCards .flex-item .card-body h4 {
	color: var(--headingColor);
	font-size: var(--normalFontSize);
	font-weight: 600;
	margin-bottom: 0;
	margin: 10px auto;
	text-transform: uppercase;
}

.artistCards .flex-item .card img {
	filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
	/* Firefox 10+, Firefox on Android */
	filter: gray;
	/* IE6-9 */
	-webkit-filter: grayscale(100%);
	/* Chrome 19+, Safari 6+, Safari 6+ iOS */
	transition: filter 0.5s;
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.artistCards .flex-item .card.card-image img{
	object-fit: inherit;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	min-height: 150px;
	height: auto;
}
.artistCards .flex-item .card.card-image .cardHolder{
	position: relative;
	width: 100%;
	height: 150px;
	overflow: hidden;
}


.artistCards .flex-item .card:hover img {
	filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
	-webkit-filter: grayscale(0%);
}

.artistCards .flex-item .card-img-top {
	width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

/* Artist Card  End*/

/* Artist Card ListView */
.artistCards.listViewCard{
	min-height: calc( 100vh - 660px);
}
.artistCards.listViewCard .wrap{
   
}

.artistCards.listViewCard .flex-container{
    
}

.artistCards.listViewCard .flex-item{
    flex: 1 100%;
    height: auto;
	background: transparent;
	text-align: left;
	margin: 0 27px;
	box-shadow: none;
}

.artistCards.listViewCard .flex-item .card{
    display: block;
    background: transparent;
}


.artistCards.listViewCard .flex-item .card img{
    display: none;
}

.artistCards.listViewCard .flex-item .card-body h4{
	font-size: var(--listViewFontSize);
	margin: 5px auto;
}
/* Artist Card ListView End */

.releveantArtistBox {
	border: 1px solid var( --secondaryColor);
	background-color: var(--whiteColor);
	border-radius: 5px;
	width: 100%;
	margin: 0 auto;
	min-height: 75px;
	display: flex;
    align-items: center;
    font-size: 14px;
}

.releveantArtistBox .relevantArtistIcon {
	padding: 15px 25px;
	background-color: var( --secondaryColor);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.releveantArtistBox .relevantArtistIcon svg {
	fill: var(--relevantArtistColor);
}

.releveantArtistBox .relevantArtistText {
	padding: 10px 10px 10px 25px;
    color: var(--headingColor);    
}

/* Artist Detail Page */

.artistDetailPage{
	margin-top: 60px;
}

.artistDetailPage .sideMenuHolder{
	background-color: #f0f5fb;
	border-radius: 10px;
	
}

.artistDetailPage .imgContainer{
	background-color: var(--whiteColor);
    padding: 5px;
    border-radius: 5px;
    width: 250px;
	height: auto;
	margin-right: 10px;
    object-fit: cover;
}

.artistDetailPage .artistInfo h3{
	color: var(--headerColor)
}

.artistDetailPage .artistInfo .loginbtn, .enquirybtn{
	background-color: var(--loginBtnColor);
	border: none;
	color: var(--whiteColor);
	padding-right: 1rem;
	padding-left: 1rem;
	margin-right: 1rem;
	font-size: var(--smallFontSize);
	font-weight: 800;
	margin-bottom: 1rem;
}

.artistDetailPage .imgContainer img{	
    width: 100%;
}

.artistDetailPage .artistDetailProfile h4{
	color: var(--headerColor);
}

.artistDetailPage .artistDetailProfile .showMore{
	color: var(--logoHeaderTextColor);
}
    

.artistDetailPage .vertical-menu {
	background-color: transparent;
	width:70%;
	margin: 10px auto;
  }
  
.artistDetailPage .vertical-menu a {
	background-color: transparent; /* Grey background color */
	color: black; /* Black text color */
	display: flex; /* Make the links appear below each other */
	align-items: center;
	padding: 5px 10px; /* Add some padding */
	text-decoration: none; /* Remove underline from links */
	border-bottom: 1px solid #192354;
}

.artistDetailPage .vertical-menu a:last-child {
	border-bottom: 0;
}


.artistDetailPage .vertical-menu a span svg {
	width: 25px; 
	height: 25px; 
	margin-right: 10px;
	fill: var(--headerColor);
  }
.artistDetailPage .vertical-menu a:hover {
	/* b	ackground-color: #ccc; Dark grey background on mouse-over	 */
}

.artistDetailPage .vertical-menu a.active {
	background-color: var(--searchColor); /* Add a green color to the "active/current" link */
	color: white;
}

/* Bottom artist Detail Page */
.bottomArtistDetail{
	background-color: var(--navLinkColor);
}

.bottomArtistDetail .tabContainer{
	margin-top:80px;
	margin-bottom:20px;
}

.bottomArtistDetail .tabContainer nav{
	margin-bottom:60px;
	justify-content: center;
}

.bottomArtistDetail .tabContainer .nav{	
	justify-content: center;
}


.bottomArtistDetail .nav-tabs{
	border-bottom:0;
}

.bottomArtistDetail .nav-tabs .nav-link:focus, .bottomArtistDetail .nav-tabs .nav-link:hover{
	border: 1px solid transparent;
	background-color: var(--whiteColor);
	color: var(--logoHeaderTextColor);
	font-weight: 600;
}

.bottomArtistDetail .nav-tabs .nav-item.show .nav-link,.bottomArtistDetail .nav-tabs .nav-link.active{
	border: 1px solid transparent;
	color: var(--logoHeaderTextColor);
	font-weight: 600;
	max-width: 175px;
	width: 175px;
}

.bottomArtistDetail .nav-tabs .nav-link{
	border-radius: 0.25rem;
	color: var(--logoHeaderTextColor);
	font-weight: 600;
	max-width: 175px;
	width: 175px;
	text-align: center;

}

.bottomArtistDetail .table thead th{
	background-color: var(--bodyColor);
	color: var(--logoHeaderTextColor);
	font-weight: 500;
}

.bottomArtistDetail .table tbody tr td span {
	margin-right: 3px;	
}
.bottomArtistDetail .table tbody tr td span svg{
	width:15px;
	height:auto;
	fill: var(--logoHeaderTextColor);
}
/* End Artist Detail Page */


/* Who We Are Page */

.whoWeAre .carousel-item img{
	max-height: 400px;
	object-fit: cover;
}

.whoWeAre .carousel-item .carousel-caption {
	top: 40%;	
  }

.whoWeAreDetails .imgHolder{
	width:100%;
	height:auto;
	overflow: hidden;
	object-fit: cover;
}

.whoWeAreDetails .imgHolder img{
	width:100%;	
}

.whoWeAreDetails h3{
	color: var(--headerColor) !important;
}

.whoWeAreDetails .releveantArtistBox .relevantArtistIcon{
	background-color: var(--headerColor);
}

.whoWeAreDetails .releveantArtistBox {
	border: 0;
}

.whoWeAreDetails .releveantArtistBox .relevantArtistIcon svg{
	fill: var(--whiteColor);
	width: 100px;
	height: auto;
}

/* End Who We Are Page */

/* News Page */
.newsPage .calenderPicker .btn.btn-outline-secondary{
	border:1px solid #ced4da;
	background-color: #fff;
    border-left: 0;
}
.newsPage .calenderPicker .btn.btn-outline-secondary svg{	
	fill: #ced4da;
}

.newsCardSection .card{
	-webkit-box-shadow: 10px 10px 29px -20px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 29px -20px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 29px -20px rgba(0,0,0,0.75);
}

.newsCardSection .imgHolder{
	width: 100%;
    height: auto;
}

.newsCardSection .imgHolder .card-img-top{
	object-fit: cover;
	object-position: 0% 0%;
    height: 175px;
}

.newsCardSection .datetime{
	display: flex;
	justify-content: space-between;
	font-size: 12px;	
}
.newsCardSection .artistName {
	color:var(--headerColor);
	font-size: 16px;
	margin-top:10px;
}
.newsCardSection .artistName h3{	
	margin-bottom: 0;	
}
.newsCardSection .artistName p{	
	font-size: 12px;	
}

.newsCardSection a{
	color:var(--headerColor);
	font-size: 12px;
}
/* End News Page */

/* Our Agents Page */

.ourAgents h3{
	color:var(--headerColor);
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 3rem;
	font-size: 1.3rem;
}
.ourAgents .topSearch{
	display: flex;   
	text-align: right;
}

.ourAgents .searchBox{
	width:100%;
}

.ourAgents .btn-primary{
	background-color:var(--searchColor);
	border:0;
	
}
.agentListing{
	min-height: calc(100vh - 503px);
}

.agentListing .singleAgent{	
	background-color: var(--whiteColor);
	border-radius: 5px;
	border:1px solid var(--whiteColor);	
	margin-bottom:1.5rem;
	margin-left:10px;
	margin-right:10px;
}

.agentListing .agentDetail{
	padding:10px ;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	
}
.agentListing .agentDetail span:first-child{
	color: var(--headerColor);
	font-weight: 600;
}
.agentListing .agentDetail span:nth-child(2){
	text-transform: none;
}

.agentListing .agentDetail .roundImg{
	width:50px;
	height:50px;
	border-radius: 50%;
	background-size: cover;
	margin-right:10px;
	background-position:50% 50%;
}

.agentListing .agentClientCount{
	background-color: var(--bodyColor);
    padding: 10px 10px;
    text-align: center;
    border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	color:var(--searchColor);
	font-weight: 600;

}
.agentListing .agentClientCount span:nth-child(2), .agentListing .agentDetail span:nth-child(2){
	font-size: 12px;
	color: var(--headingColor);
	display: block;
	font-weight: 300;

}

#agentDetailModal .modal-header{
	background-color: var(--bodyColor);
}

#agentDetailModal .modal-header .close{
	font-weight: 300;
	margin-top:-2rem;
	margin-right:-1.5rem;
}

#agentDetailModal .modal-header .roundImg{
	width:75px;
	height:75px;
	border-radius: 50%;
	background-size: cover;
	margin-right:10px;
	background-position:50% 50%;
}

#agentDetailModal .modal-header h3{
	color:var(--headerColor);
	text-transform: uppercase;
	margin-bottom: 0;	
	font-size: 1.2rem;
}
#agentDetailModal .modal-header p{
	margin-bottom: 0;
	font-size: 12px;	
}

#agentDetailModal .modal-body {
	padding:0;
	max-height: 245px;
	overflow: hidden;
	overflow-y: auto;
}

#agentDetailModal .modal-body .singleArtistDetail {
	border-bottom:1px solid #cecece;
}

#agentDetailModal .modal-body .singleArtistDetail .artistDetail{
	padding:10px;
}

#agentDetailModal .modal-body .singleArtistDetail .artistDetail .roundImg{
	width:40px;
	height:40px;
	border-radius: 50%;
	background-size: cover;
	margin-right:5px;
	background-position:50% 50%;
}

#agentDetailModal .modal-body .singleArtistDetail .artistDetail p{
	margin-bottom:0;
}
#agentDetailModal .modal-body .singleArtistDetail .artistDetail p:first-child{
	color:var(--headerColor);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
}
#agentDetailModal .modal-body .singleArtistDetail .artistDetail p:nth-child(2){
	font-size: 12px;
	margin-top:-5px;
}

#agentDetailModal .modal-body .singleArtistDetail .artistSocial svg{
	width:20px;
	margin:5px;
	fill: var(--headingColor);
}

/* End ourAgents Page */

/* offerSheet*/
.offerSheet .topHeader h3{
	font-size: 2rem;
	color:var(--headerColor); 
	font-weight: 600;
}
.offerSheet .topHeader div{
	width:90% !important;
}

.offerSheet .sendBookRequest{
	margin-bottom: 1rem;
	
}

.offerSheet .offerBody{
	background-color: var(--whiteColor);
	min-height: 200px;
}

.offerSheet .tabbedContent{
	padding-top:30px;
	padding-bottom:30px;
	width:90%;
	margin:0 auto;
}


.offerSheet .tabbedContent .nav-pills .nav-link.active, .offerSheet .tabbedContent .nav-pills .show>.nav-link{
	background-color: var(--bodyColor) !important;
	color:var(--searchColor) !important;

}
.offerSheet .tabbedContent .nav-pills .nav-link span svg{
	width: 40px;
}
.offerSheet .tabbedContent .nav-pills .nav-item .nav-link{
	display:flex;
	align-items: center;
	min-width: 210px;
	padding:1rem;
	justify-content: center;
	background-color: #cecece;
	margin-right: 10px;
	color: var(--headingColor);
	margin-bottom:10px;
}

.offerBody .tabbedContent button{
	min-width: 170px;
}

.sectionHeading h5{
	color:var(--headerColor);
}

#full-offer-sheet .typeahead.dropdown-menu{	
	width: 98%;
}
#full-offer-sheet .typeahead.dropdown-menu li{ 	
	padding:5px 10px;
}

/* offerSheet end*/

.createAccount{
	min-height: 100vh;
}

.createAccount .containerArea{
	display: flex;
	height: 100vh;
    align-items: center;
    justify-content: center;
}

.createAccount .containerArea.accountCreate{
	align-items: flex-start;
}

.createAccount .containerArea .agentLogin{
	width:90%;
	max-height: unset;
	background-color: var(--whiteColor);
	border-radius: 10px;
	text-align: center;
	padding:20px;
}

.createAccount .containerArea .agentLogin.createAccountSection{
	margin-top:20px;
	margin-bottom:20px;
}

.createAccount .containerArea .agentLogin h5{
	color: var(--headerColor);
}

.createAccount button{
	min-width: 170px;
}

.createAccount .logo svg{
	width: 100px;
}

/* Offersheet li */

.artistF_ui ul{
	display: flex;
	list-style-type: none;
	text-align: left;
	padding: 0px;
	margin: 0px;
   }
   .artistF_ui ul li {
	margin-right: 10px;
   }
   .artistF_ui ul li label {
	  text-align: left;
  }

  .help-block.with-errors{
	  color: red !important;
  }

  .mt-20{
	  margin-top: 20px;
  }

  .wd-brk {
	  word-break: break-word;
  }

  .mt-80{
	margin-top: 80px;
	}
 .fs-50{
	font-size: 50px;
 } 

 .mt-50{
	margin-top: 50px;
	}

.mt-point5{
	margin-top: .5rem;
}

 .bg-border-color{
	background-color: var(--bodyColor);
	border: 1px solid #ffffff;
 }

 .color-ab{
	 color:aliceblue!important;
 }
  