/* typography
 ----------------------- */
/* SERIF: Playfair Display */
/* SANS SERIF: Montserrat */
/* FONTS: Google Repository */
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700|Playfair+Display:400,400i,700');

body {
	font-family: "Montserrat", Gill Sans, Futura, Century Gothic, sans-serif;
	color: #9B9B9B;
	-webkit-font-smoothing: antialiased;
	font-smooth: always;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", Garamond, Bodoni, Georgia, serif;
	font-weight: 400;
}

a {
	color: #2c2f34;
}

a:hover {
	color: #1e2023;
	text-decoration: underline;
}

a.light {
	color: rgba(255,255,255,0.7);
}

a.light:hover {
	color: rgba(255,255,255,1.0);
}

.shadow {
	text-shadow: 0 0 10px #1e2023;
}

.custom li {
  padding-left: 20px;
  border-left: 1px solid rgba(0,0,0,0.2);
  font-size: 14px;
}

.montserrat 					{ font-family: "Montserrat"; }
.playfair							{ font-family: "Playfair Display"; }

.text-10							{ font-size: 10px; }
.text-11							{ font-size: 11px; }
.text-12							{ font-size: 12px; }
.text-14							{ font-size: 14px; }
.text-18							{ font-size: 18px; }
.text-32							{ font-size: 32px; }
.text-48							{ font-size: 48px; }
.text-64							{ font-size: 64px; }
.text-72							{ font-size: 72px; }
.text-144							{ font-size: 144px; }
.font-weight-light 		{ font-weight: auto; }
.letter-spaced				{ letter-spacing: 4px; }
.font-weight-100			{ font-weight: 200; }
.font-weight-200			{ font-weight: 200; }
.font-weight-300			{ font-weight: 300; }
.font-weight-400			{ font-weight: 400; }
.font-weight-500			{ font-weight: 500; }
.font-weight-600			{ font-weight: 600; }
.font-weight-700			{ font-weight: 700; }

/* global colours
 ----------------------- */
.white 								{ color: #ffffff; }
.grey 								{ color: #9B9B9B; }
.light-grey 					{ color: rgba(155,155,155,0.5); }

/* global items
 ----------------------- */
.quote {
	height: 100px;
}

hr.white {
	border-top: 1px solid rgba(255,255,255,0.2);
}

.bar {
	height: 2px;
	width: 100px;
	background: rgba(255,255,255,0.5);
	margin-bottom: 20px;
}

.bar-dark {
	height: 2px;
	width: 100px;
	background: rgba(155,155,155,0.5);
	margin-bottom: 20px;
}

.white-shadow-box {
	background: #ffffff;
	-webkit-box-shadow: 0 0 40px 0 rgba(155,155,155,0.5);
	box-shadow: 0 0 40px 0 rgba(155,155,155,0.5);
	padding: 50px;
}

.shadow-box {
	background: #ffffff;
	-webkit-box-shadow: 0 0 40px 0 rgba(155,155,155,0.5);
	box-shadow: 0 0 40px 0 rgba(155,155,155,0.5);
	padding: 25px;
}

.shadow-box-img .image {
	background: #ffffff;
	-webkit-box-shadow: 0 0 40px 0 rgba(155,155,155,0.5);
	box-shadow: 0 0 40px 0 rgba(155,155,155,0.5);
}

img.black-white {
	filter: grayscale(100%) sepia(40%);
	-webkit-filter: grayscale(100%) sepia(40%);
}

.neg-pos-100 {
	position: relative;
	top: -100px;
}

.assoc-name {
	background-color: rgba(0,0,0,0.05);
	border-radius: 500px;
	-webkit-border-radius: 500px;
	margin: 10px 5px 5px 0px;
	padding: 5px 10px;
}

/* global buttons
 ----------------------- */
.btn-default {
	-webkit-border-radius: 500px 500px 500px 500px;
	border-radius: 500px 500px 500px 500px;
	background: transparent;
	border: 2px solid rgba(255,255,255,0.5);
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 2px;
	font-size: 9px;
	padding: 12px 16px;
}

.btn-default:hover {
	background: rgba(255,255,255,1.0);
	border: 2px solid rgba(255,255,255,1.0);
	color: rgba(10,13,20,0.83);
}

.btn-dark {
	-webkit-border-radius: 500px 500px 500px 500px;
	border-radius: 500px 500px 500px 500px;
	background: transparent;
	border: 2px solid rgba(155,155,155,0.5);
	color: rgba(155,155,155,1.0);
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 2px;
	font-size: 9px;
	padding: 12px 16px;
}

.btn-dark:hover {
	background: rgba(155,155,155,1.0);
	border: 2px solid rgba(155,155,155,1.0);
	color: rgba(255,255,255,1.0);
}

/* login page
 ----------------------- */
#login {
	background-image: url('../img/header3.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100vw;
	height: 100vh;
}

#login .overlay {
	background-color: rgba(10,13,20,0.83);
	width: 100vw;
	height: 100vh;
	padding-top: 20%;
}

#login form input[type='text'],
#login form input[type='password'] {
	background: rgba(255,255,255,0.2);
	-webkit-border-radius: 500px 500px 500px 500px;
	border-radius: 500px 500px 500px 500px;
	color: #ffffff;
	font-family: "Montserrat", Gill Sans, Futura, Century Gothic, sans-serif;
	font-size: 10px;
	letter-spacing: 2px;
	padding: 8px 12px;
	margin-bottom: 10px;
	font-weight: auto;
}

#login form input[type='text']::-webkit-input-placeholder,
#login form input[type='password']::-webkit-input-placeholder {
	color: rgba(255,255,255,0.6);
	font-family: "Montserrat", Gill Sans, Futura, Century Gothic, sans-serif;
	font-weight: auto;
	text-transform: uppercase;
}

#login form input[type='text']:focus,
#login form input[type='password']:focus {
	border: 1px solid white;
	color: rgba(10,13,20,0.83);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background: rgba(255,255,255,1.0);
}

/* navigation & modal
 ----------------------- */
#navbar {
	padding: 25px 0px;
}

.navbar-scroll {
	background-color: rgba(10,13,20,0.83);
	-webkit-box-shadow: 0 0 25px 0 rgba(10,13,20,0.4);
	box-shadow: 0 0 25px 0 rgba(10,13,20,0.4);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.navbar-header {
  float: none;
	width: inherit;
}

form.form-header input {
	border: 0px;
	background: rgba(255,255,255,0.2);
	-webkit-border-radius: 500px 500px 500px 500px;
	border-radius: 500px 500px 500px 500px;
	color: #ffffff;
	font-family: "Playfair Display";
	font-size: 11px;
	font-style: italic;
	letter-spacing: 0.5px;
	padding-left: 10px;
}

form.form-header input::-webkit-input-placeholder {
  color: #ffffff;
	font-family: "Playfair Display";
}

form.form-header input:focus {
	color: rgba(10,13,20,0.83);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.modal {
	background: rgba(10,13,20,1.0);
}

.modal-fullscreen-menu .close {
  color: white;
  opacity: 1;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  font-size: 2vh;
}

.modal-fullscreen-menu .modal-dialog {
  margin: 0 auto;
  width: 100%;
  max-width: 80%;
  display: flex;
  height: 100%;
  align-items: center;
}

.modal-fullscreen-menu .modal-content {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.modal-fullscreen-menu .list-group-item {
	padding: 0px !important;
}

.modal-fullscreen-menu .list-group {
  margin: 0 auto;
  width: 100%;
}

.modal-fullscreen-menu .list-group a {
  letter-spacing: 0.05em;
  border: none;
  transition: all 0.25s ease;
  background-color: transparent;
  color: rgba(255,255,255,0.5);
	margin: 2px 0px;
	font-weight: auto;
}

.modal-fullscreen-menu .list-group a:hover {
  color: #ffffff;
	text-decoration: underline;
}

.navbar-light .navbar-toggler-icon {
	background-image: url('../img/nav-icon.svg');
}

.modal-fullscreen-menu .close {
	background-image: url('../img/close-btn.svg');
	top: 20px;
	right: 20px;
	padding: 9px;
}

/* carousel changes
 ----------------------- */
.carousel-caption {
	left: 5%;
	bottom: 30%;
	text-align: left;
	width: 40%;
}

.carousel-caption p {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
	line-height: 20px;
}

/* home-page customs
 ----------------------- */
.history-panel-bg {
	background-image: url('../img/arab-drawing.png');
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
}

@media (max-width: 1200px) {
	.history-panel-bg {
		background-image: none;
	}
}

.peony-bg {
	background-image: url('../img/peonies.png');
	background-size: auto;
	background-position: bottom right;
	background-repeat: no-repeat;
}

.arab-herd {
	background-image: url('../img/arab-herd.png');
}

.square-box {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 0;
	padding-top: 80%;
	padding-bottom: 19%;
}

.square-box-sm {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 0;
	padding-top: 75%;
	padding-bottom: 25%;
}

.overlay {
	background-color: rgba(0,0,0,0.4);
}

/* footer
 ----------------------- */
footer {
	background: #2c2f34;
	padding: 75px 0px;
}

/* 404 page
 ----------------------- */
.short-header {
	height: 125px;
	background: url('../img/header2.png');
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
}

.short-header-horse {
 	height: 400px;
  background: url('../img/header5.png');
 	background-position: center center;
 	background-repeat: no-repeat;
 	background-size: cover;
}

.short-header-heritage {
 	height: 400px;
  background: url('../img/header-heritage.png');
 	background-position: center center;
 	background-repeat: no-repeat;
 	background-size: cover;
}

/*pedigree
 ----------------------- */
.pedigree-box {
  background-color: rgba(10,13,20,0.02);
}

.pedigree {
	border: 0 none;
	text-align: left;
	font-size: 14px;
  color: #9B9B9B;
}

.pedigree tbody tr:hover td,
.pedigree tbody tr:hover th {
	background-color: transparent;
}

.pedigree tbody tr td a {
	color: #9B9B9B;
	font-style: italic;
}

.pedigree tbody tr td#sire a,
.pedigree tbody tr td#sire,
.pedigree tbody tr td#dam a,
.pedigree tbody tr td#dam {
	color: #9B9B9B;
  font-size: 16px;
	font-family: "Playfair Display";
	font-style: italic;
}

.pedigree tbody tr td {
	vertical-align: middle;
	padding: 5px 10px;
}

#sire {
	vertical-align: bottom;
	background: url('../img/border.png') repeat-x left bottom;
}

#dam {
	vertical-align: top;
}

.top {
	vertical-align: top;
}

.bottom {
	vertical-align: bottom;
}

.border-left {
	background: url('../img/border.png') repeat-y left top;
}

.border-bottom {
	background: url('../img/border.png') repeat-x left bottom;
}

.border-top {
	background: url('../img/border.png') repeat-x left top;
}

.borderless {
	border: 0 none;
}

p.breed {
	color: rgba(118,95,45,0.4);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}
