/* Public Profile Specific Styles */


body#profile {
	background-color: #fcfcfc;
}

/* Hero and jumbotron Styles

calc(100vh - 100px)

*/

.jumbotron {
	background-image: url(/app/i/default_banner.png);

    background-position: center top;
    background-size: auto auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent;

}


#hero {
	padding-top: 60px;
	height: 24vw;
	min-height: 300px;
	border-radius: 0;
}


/* nav and toolbar styling */

nav.navbar {
	height: 70px;

}

nav.navbar span.h3 {
	text-shadow: 2px 2px 4px rgba(255,255,255,0.6);
}

div.toolbar {
	height: 70px;
	margin-top: 70px;
}

.headshot {
	width: 13vw;
	height: 13vw;
	min-width: 150px;
	min-height: 150px;
	max-width: 250px;
	max-height: 250px;
	border-radius: 50%;
	object-fit: cover;
	margin-top: 1rem;
	margin-left: 12vw;
	border: 4px solid white;
	position: relative;
	z-index: 1;
	box-shadow: 2px 2px 7px #222;
}

#profile main {
	padding-bottom: 5rem;
	font-family: Assistant, Calibri, Arial, sans-serif;
}



#profile .container.no-shadow {
	-webkit-box-shadow: none;
	-moz-box-shadow:    none;
	box-shadow:         none; 
}

#profile .container {
	border-color: #ccc;
	background-color: #fff;
	border-radius: 0;
	-webkit-box-shadow: 3px 3px 5px 6px #eee;
	-moz-box-shadow:    3px 3px 5px 6px #eee;
	box-shadow:         3px 3px 5px 6px #eee; 
}

div#on-the-ice {

    background-position: 97% 20px;
    background-size: 110px;
    background-repeat: no-repeat;
    background-color: transparent;

}

div#main h1 {
	line-height: 0.9;
}

.main-padding {
	margin-top: 60px;
}


.profile-img-loading {
  width: 320px;
  height: 179px;
  background: url('../i/loading.gif') 50% no-repeat;
  border: 1px solid #ddd;
  border-radius: 5px;
}


.stop-default-youtube{
  display:inline-block;
  position:relative;
}
.stop-default-youtube iframe{
  vertical-align:top;
  pointer-events: none; /* let any clicks go trough me */
}


/* social feed */

.card-columns {
    column-count: 1;
}

/* Responsive Styles */
/* Bootstrap sizes + an xxl large size */

/* Extra small devices (portrait phones, less than 576px)
// No media query since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)

*/

@media only screen 
	and (min-width : 576px) 
{

	#profile .container {
		border-radius: 5px;
	}

	div#main {
	    background-size: 100px;
	}

}

/* Medium devices (tablets, 768px and up) */
@media only screen 
	and (min-width: 768px)  
{

	div#main {
		background-position: 99% 5%;
	    background-size: 130px;
	}

}

/* Large devices (desktops, 992px and up) */
@media only screen 
	and (min-width: 992px)   
{

	.headshot {
		width: 17vw;
		height: 17vw;
		}

	.card-columns {
	    column-count: 2;
	}


}


/* Extra large devices (large desktops, 1200px and up) */
@media only screen 
	and (min-width: 1200px) 
{

	.jumbotron {
		background-size: contain;
	}
	.card-columns {
	    column-count: 3;
	}


}


/* Extra Large screens ----------- */
@media only screen 
and (min-width : 1800px)

{

}



