*{
	font-family: "Roboto", sans-serif;
}

html{
    width:100%;
    height:100%;
}

body{
    display: flex;
    flex-direction: column;
}

body#_index-login, 
body#_register,
body#_settings{
	height: 100%;
}

body#_index{
    margin:0;
    box-sizing:border-box;
    padding-bottom:460px;
}

.hp{
    display: none !important;
}

.only-desktop{
    display: none;
}

.full-container{
    width:100%;
    height:100%;
}

/*session flash*/
#sessionFlash{
    position: absolute;
    top: -37px;
    left: 0;
    padding: 10px;
    background: red;
    border: none;
    color: white;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    z-index: 2;
}

#sessionFlash a{
    color:white;
    text-decoration: underline;
}

/*notifation badge initial display none*/
.notificationBadge{
    background-color: red;
    line-height: 18px;
    padding: 0 8px;
    border-radius: 5px;
    position: absolute;
    box-sizing: border-box;
    color: white;
    top: -5px;
    right: -8px;
    font-size: 10px;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.players-interested .notificationBadge{
    top:-10px;
    right:-22px;
}

.indented-list > li{
    list-style: none;
    margin-bottom: 12px;
}

.bull-disc > li{
    list-style: disc;
}

.thisInline{
	display: inline !important;
}

.darkgray{
	color:darkgray;
}

.black{
	color:black;
}

.red{
    color:red;
}

.flexIt{
	display: flex;
}

.flex-center-both-axis{
    display: flex;
    justify-content: center;
    align-items: center;
}

.mt0{
	margin-top: 0;
}

.mb0{
    margin-bottom: 0;
}

.margT1{
    margin-top: 1em;
}

.margB1{
    margin-bottom: 1em;
}

.textCenter{
    text-align: center;
}

.footnote{
    font-size: 12px;
}

/*onboarding*/
.final-onboarding-modal{
    position:fixed; 
    top:0; 
    left:0; 
    right:0; 
    bottom:0; 
    background-color:black; 
    opacity:.9;
}
.final-onboarding-message{
    position: fixed;
    top: 0;
    height: calc(100% - 460px);
    color: white;
    box-sizing: border-box;
    padding: 0 20px;
    text-align: center;
}
.final-onboarding-message h1{
    font-size: 6vw;
}
.final-onboarding-message h2{
    font-size: 4vw;
}
.onboarding-skip{
    background-color: black;
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px;
    width: 80px;
    border-radius: 15px;
    cursor: pointer;
}

.onboarding-skip:hover{
    background-color: lightgray;
    color:black;
}
.onboarding-finish{
    background-color: red;
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px;
    width: 80px;
    border-radius: 15px;
    cursor: pointer;
}

.onboarding-finish:hover{
    background-color: white;
    color:black;
}
/*onboarding*/

.ringr-btn{
    background-color: black;
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px;
    width: 200px;
    border-radius: 15px;
    cursor: pointer;
    margin-right: 12px;
}

.ringr-btn:hover{
    background-color: lightgray;
    color:black;
}

/*settings-container*/
.settings-container{
    width: 100%;
    margin: auto;
    text-align: center;
}

/*delete user page*/
.delete-user-container{
    margin: auto;
    text-align: center;
}

/*change password container*/
.change-password-container{
    margin: auto;
    text-align: center;
}

/*Index login page*/
.login-container {
    width: 100%;
    height: calc(100% - 39px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#_index-login .login-container{
    max-width: 300px;
    margin:auto;
}

.loginForm{
    margin: auto;
    text-align: center;
    transition: display 2s;
}

.loginForm div{
    display: block;
    margin:6px;
}

.loginForm div *{
    display: block;
    text-align: center;
    margin: auto;
}

.loginForm div input, .loginForm div textarea{
    margin: 6px auto;
    font-size: 16px;
    color: black;
    border: 1px solid black;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
    width:80%;
    resize: none;
}

.loginForm div input:focus, .loginForm div textarea:focus{
    outline: 0;
    outline-color: transparent;
    outline-style: none;
}

.loginForm div.submit{
    display: block;
}

.loginForm div.submit input{
    background-color: black;
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px;
    min-width: 100px;
    border-radius: 15px;
    cursor: pointer;
    width: 80%;
}

.loginForm div.submit input:hover{
    background-color: darkgray;
}

.login-container a{
    color:black;
    text-decoration:underline;
}

.login-container a:hover{
	color:darkgray;
}


/*Ringr Form styles*/
.ringr-form{
	margin: auto;
	text-align: center;
	display: none;
	transition: display 2s;
}

.ringr-form div{
	display: inline-block;
	margin:6px;
}

.ringr-form div *{
	display: block;
	text-align: center;
    margin: auto;
}

.ringr-form div input, .ringr-form div textarea{
	margin: 6px auto;
    font-size: 16px;
    color: black;
    border: 1px solid black;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
    resize: none;    
}

.ringr-form div textarea{
    overflow: hidden;
}

.ringr-form div input:focus, .ringr-form div textarea:focus{
	outline: 0;
	outline-color: transparent;
	outline-style: none;
}

.ringr-form div.submit{
	display: block;
}

.ringr-form div.submit input{
	background-color: black;
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px;
    min-width: 100px;
    border-radius: 15px;
    cursor: pointer;
}

.ringr-form div input[type="checkbox"]{
    -webkit-appearance: none !important;
        width: 0 !important;
    border: 1px solid white;
}

.ringr-form div input[type="checkbox"]:before {
    position: relative;
    top: -5px;
    left: -10px;
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid black;
    border-radius: 3px;
    content: "";
    background: #FFF;
}

.ringr-form div input[type="checkbox"]:after {
    position: relative;
    display: block;
    left: -8px;
    top: -21px;
    width: 12px;
    height: 12px;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    content: "";
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
}

.ringr-form div input[type="checkbox"]:checked:after {
    background-image: url(../imgs/checkmark.png);
    background-size: contain;
    background-color: black;
    position: relative;
    top: -22px;
    left: -9px;
    border: none;
    width: 16px;
    height: 16px;
}

.ringr-form div input::file-selector-button {
	background-color: black;
	border: none;
	color: white;
	font-size: 16px;
	text-align: center;
	width: 100%;
	cursor: pointer;
}

.ringr-form .slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.ringr-form .slider label{
    text-align: center;
    font-size: 18px;
}
.ringr-form .slider #rangeValue {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
.ringr-form .slider #rvLable {
}
.ringr-form .slider input[type="range"] {
    -webkit-appearance: none !important;
    width: 100%;
    height: 1px;
    background: darkgray;
    border: none;
    outline: none;
    padding:0px;
    margin:18px 0;
}
.ringr-form .slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 30px;
    height:30px;
    background: white;
    border: 2px solid black;
    border-radius: 50%;
    cursor: pointer;
}
.ringr-form .slider input[type="range"]::-webkit-slider-thumb:hover {
    background: white;
 } 

.submit{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submit a{
    color:darkgray;
    text-decoration: underline;
}

.submit a:hover{
    color:black;
}

/*header*/
#header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    align-items: self-start;
    box-sizing: border-box;
    flex-wrap: wrap;
    flex-direction: column;
}

#header #nav{
    padding-top:20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column
    ;
}

#header #nav > div:not(#mobile-menu-icon){
    position: relative;
}

#header #nav #mobile-menu-icon{
    text-decoration: none;
    font-size: 18px;
    background: none;
    border: none;
    color: black;
    margin: 0 10px;
    white-space: nowrap;
    position: relative;
}

#header #nav #mobile-menu-icon .notificationBadge{
    left:18px;
    right:initial;
}

#header #nav a{
    text-decoration: none;
    font-size: 22px;
    background: none;
    border: none;
    color: black;
    margin: 2px 10px;
    white-space: nowrap;
    position: relative;
    display: none;
}

#header #nav a:hover{
    color:black;
}

#header #nav #nav-messages .notificationBadge{
    background-color: red;
    line-height: 18px;
    padding: 0 8px;
    border-radius: 5px;
    position: absolute;
    box-sizing: border-box;
    color: white;
    top: -5px;
    right: -8px;
    font-size: 10px;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#_profile #header{
    padding:0;
}

#logo-container{
    width: 100%;
    display: flex;
    justify-content: center;
}


/*PLAYER REQUEST module*/
#pr-minimize-button{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;/*gets animated to 460 on load*/
    background-color: red;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 2px 0px 10px #888;
    box-sizing: border-box;
    color: white;
    text-align: center;
    font-size: 24px;
}

#player-request-feed{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height:0px;/*gets animated to 420 on load*/
	background-color: #eee;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 2px 0px 10px #888;
	box-sizing: border-box;
}

#player-request-feed-content{
    overflow-y: scroll;
    height: calc(100% - 62px);
    overflow-x: hidden;
    padding: 10px;
    box-sizing: border-box;
    scrollbar-width:thin;/*firefox*/
    scrollbar-color:black #eee;/*firefox*/
}

#player-request-feed-content h4{margin-bottom:0;}

/* width */
#player-request-feed-content::-webkit-scrollbar {
  width: 5px;
}

/* Track */
#player-request-feed-content::-webkit-scrollbar-track {
  border-radius: 0px 10px 0px 0px;
}

/* Handle */
#player-request-feed-content::-webkit-scrollbar-thumb {
	background-color: black;
    border-radius: 0px 10px 0px 0px;
}

.player-request-card{
	background-color: white;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 0 10px 10px;
    margin: 0 auto 24px;
    -webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.player-request-card .headline{
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-request-card .pr-item{
	margin:6px 0;
}

.player-request-card .pr-item-w-icon{
	margin:6px 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.player-request-card .pr-item-w-icon div{
	display: flex;
	align-items: center;
}

.player-request-card .pr-item-w-icon img{
	margin-right: 12px;
}

.pr-msg-link{
    background-color: lightgray;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: black;
    margin: 6px 0;
    display: inline-block;
}

.pr-msg-link:hover{
    background-color:black;
    color:white;
}

#_messages .player-request-card .players-interested > div{
    display: inline-block;
    position: relative;
}

/*create player request post button*/
#player-request{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: black;
    box-sizing: border-box;
    padding: 14px 0;
    min-height: 62px;
    z-index: 2;
}

#player-request.isOpen{
    height:100%;
}

#create-player-request{
	background: none;
	border: none;
	color: white;
	font-size: 16px;
	text-align: center;
	width: 100%;
	cursor: pointer;
}

#form-modal{
	z-index: 1;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: .5;
    display: none;
}

/*player request form*/
#player-request-form{
	margin: auto;
	text-align: center;
	display: none;
	transition: display 2s;
}

#player-request-form h4{
    margin: 1em 0;
}

#player-request-form div{
	display: block;
	margin:6px;
	font-size: 12px;
}

#player-request-form div *{
	display: block;
	text-align: center;
    margin: auto;
}

#player-request-form div input, #player-request-form div textarea{
	margin: 6px auto;
	font-size: 14px;
	color: black;
	border: 1px solid darkgray;
	padding: 6px;
	border-radius: 10px;
    width:300px;
    resize: none;
    overflow: hidden;
}

#player-request-form div select, #player-request-form div input[type="date"], #player-request-form div input[type="time"]{
    background-color: white;
}

#player-request-form div input[type="date"]:before{
    content: attr(placeholder) !important;
    color:darkgray;
}

#player-request-form div input[type="time"]:before{
    content: attr(placeholder) !important;
    color:darkgray;
}

#player-request-form div input[type="date"]:focus:before,
#player-request-form div input[type="date"]:valid:beforehttps{
    content: "";
}

#player-request-form div input:focus, #player-request-form div textarea:focus{
	outline: 0;
	outline-color: transparent;
	outline-style: none;
}

#player-request-form div.submit{
	display: block;
}

#player-request-form div.submit input{
	background-color: black;
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px;
    width: 200px;
    border-radius: 15px;
    cursor: pointer;
}

#player-request-form div.submit input:hover{
    background-color: lightgray;
    color:black;
}

#player-request-form div input[type="checkbox"]:before {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid black;
  border-radius: 3px;
  content: "";
  background: #FFF;
}

#player-request-form div input[type="checkbox"]:after {
    position: relative;
    display: block;
    left: 2px;
    top: -11px;
    width: 7px;
    height: 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    content: "";
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
}

#player-request-form div input[type="checkbox"]:checked:after {
	background-image: url(../imgs/checkmark.png);
    background-size: contain;
    background-color: black;
    position: relative;
    top: -12px;
    left: 1px;
    border: none;
    width: 11px;
    height: 11px;
}

#player-request-form div input::file-selector-button {
	background-color: black;
	border: none;
	color: white;
	font-size: 16px;
	text-align: center;
	width: 100%;
	cursor: pointer;
}

#player-request-form select#sportSelect {
    border: 1px solid darkgray;
    color:black;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    width:314px;
}

.pr-interested-form {

}

.pr-interested-form input[type="submit"]{
    border: 1px solid lightgray;
    border-radius: 15px;
    font-size: 14px;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
    background-color: lightgray;
    color: black;
}

.pr-interested-form input[type="submit"]:hover{
	background-color: black;
	color: white;
}

.submitItBaby{
    background-color: black;
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px;
    width: 200px;
    border-radius: 15px;
    cursor: pointer;
    margin-right: 12px;
}

.submitItBaby:hover{
    background-color: lightgray;
    color:black;
}

.editIt{
    border: 1px solid lightgray;
    border-radius: 15px;
    font-size: 18px;
    padding: 10px;
    width: 80px;
    cursor: pointer;
    font-weight: bold;
    background-color: lightgray;
    color: black;
}

.editIt:hover{
    background-color: black;
    color: white;
}



/*PROFILE*/
#profile, #_profile{
	box-sizing: border-box;
	padding: 0 20px;
}

#_profile h1 a, #_profile h2 a{
    color:darkgray;
}

#_profile h1 a:hover, #_profile h2 a:hover{
    color:black;
}



/*edit form button*/
.edit-item, .close-edit-item{
	background: #eee;
    margin: auto;
    border-radius: 15px;
    padding: 2px 12px;
    display: inline-block;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.edit-item img, .close-edit-item img{
	margin: -6px 0;
}

.component-container{
	margin: auto;
	text-align: center;
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

/*profile-sports*/
#sports-container{

}

#profile-sports{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.sport-icon{
	max-width: 64px;
	margin-right: 12px;
}

/*profile-name*/
#name-container{

}
#profile-name{
	font-size: 40px;
	font-weight: bold;
	margin: 12px auto;
	text-align: center;
}


/**#profile-img*/
#img-container{

}

#profile-img{
	margin:12px 0;
	text-align: center;
}

#profile-img img{
    max-width: calc(100% - 20px);
    border-radius: 15px;
/*    border: 10px double black;*/
    box-shadow: 0px 0px 8px #bbb;
}

#change_img{
	border: 1px solid black;
    display: block;
    padding: 10px;
    cursor: pointer;
    color: white;
    background-color: black;
    border-radius: 15px;
    font-size: 18px;
    margin:6px auto;
}

input[name="change_img"]{
	display: none;
}


/*profile-location*/
#location-container{

}

#profile-location{
    text-align: center;
}


/*profile-bio*/
#profile-bio{
	font-size: 22px;
	text-align: center;
	margin: 32px auto;
}

/*profile-footage*/
#profile-footage{

}

/*footage-video*/
.video-container{
	margin-bottom:24px;
}

.footage-video{
	margin:24px 0;
	text-align: center;
	position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.footage-video iframe{
	border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*MESSAGES*/
#messages{
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
/*chat-module*/
#chat-module{
	max-width:100%;
	box-sizing: border-box; 
}

/*chats*/
#chats{
    transform: rotateX(180deg);
    box-sizing: border-box;
    padding: 0;
    border-radius: 15px;
    max-width: 540px;
    margin: 12px auto;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scrollbar-width:thin;/*firefox*/
    scrollbar-color:lightgray white;/*firefox*/
}

/*chat window scroll width */
#chats::-webkit-scrollbar {
  height: 8px;
}

/* chat window scroll Track */
#chats::-webkit-scrollbar-track {
  border-radius: 0px;
}

/*chat window scroll Handle */
#chats::-webkit-scrollbar-thumb {
    background-color: lightgray;
    border-radius: 10px;
}

.chat-user{
    transform: rotateX(180deg);
    box-sizing: border-box;
    padding: 10px;
    margin:12px 0;
    border-radius:15px;
     -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    cursor: pointer;
    position: relative;
}

.chat-user-selected{
    background-color: lightgray;
}

.chat-user:active{
    background-color: lightgray;
}

.chat-user-img{
    width: 60px;
    height: 60px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    margin: auto;
    position: relative;
}

.chat-user-name{
    font-size: 14px;
}

/*chat window*/
#chat-window{
    box-sizing: border-box;
    padding: 0 10px 0 15px;
    max-height: 300px;
    margin: auto;
    overflow-y: scroll;
    display: flex;
    flex-direction: column-reverse;
    scrollbar-width:thin;/*firefox*/
    scrollbar-color:black #eee;/*firefox*/
}

/*chat window scroll width */
#chat-window::-webkit-scrollbar {
  width: 10px;
}

/* chat window scroll Track */
#chat-window::-webkit-scrollbar-track {
  border-radius: 0px 10px 10px 0px;
}

/*chat window scroll Handle */
#chat-window::-webkit-scrollbar-thumb {
    background-color: lightgray;
    border-radius: 0px 10px 10px 0px;
}

.my-msg{
    width: 70%;
    margin: 12px 0;
    background-color: black;
    color: white;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px 0 10px 10px;
    align-self: end;
    word-break: break-word;
}

.my-msg .player-request-card{
    color: black;
}

.their-msg{
    width: 70%;
    margin: 12px 0;
    background-color: lightgray;
    color: black;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 0px 10px 10px 10px;
    align-self: start;
    word-break: break-word;
}

/*chat form*/
#chat-form-container{
    display: none;/*gets shown when user taps on user they want to chat with*/
}

#chat-form{
  margin: auto;
  text-align: center;
  transition: display 2s;
}



#chat-form div{
  display: inline-block;
  margin:6px;
}

#chat-form div *{
  display: block;
  text-align: center;
    margin: auto;
}

#chat-form div input, #chat-form div textarea{
  margin: 6px auto;
    font-size: 16px;
    color: black;
    border: 1px solid black;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
    resize: none;
    overflow: hidden;
}

#chat-form div textarea{
    text-align: left;
}


#chat-form div input:focus, #chat-form div textarea:focus{
  outline: 0;
  outline-color: transparent;
  outline-style: none;
}

#chat-form div.submit{
  display: block;
}

#chat-form div.submit input{
  background-color: black;
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px;
    min-width: 100px;
    border-radius: 15px;
    cursor: pointer;
}

#chat-form div input[type="checkbox"]:before {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid black;
  border-radius: 3px;
  content: "";
  background: #FFF;
}

#chat-form div input[type="checkbox"]:after {
    position: relative;
    display: block;
    left: 2px;
    top: -11px;
    width: 7px;
    height: 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    content: "";
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
}

#chat-form div input[type="checkbox"]:checked:after {
  background-image: url(../imgs/checkmark.png);
    background-size: contain;
    background-color: black;
    position: relative;
    top: -12px;
    left: 1px;
    border: none;
    width: 11px;
    height: 11px;
}

#chat-form div input::file-selector-button {
  background-color: black;
  border: none;
  color: white;
  font-size: 16px;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

/*myPlayer-request-module*/
#myPlayer-request-module{
    
}

#myPlayer-request-module a{
    color:red;
    font-weight: bold;
}

#myPlayer-request-module a:hover{
    color:black;
}



/*EXPLORE*/
#explore-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#explore-content .player-card{
    width: 300px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0px 5px 8px #bbb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin:20px;
    background-color: white;
}

#explore-content .player-card .usr-username{
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px black;
}

#explore-content .player-card .ringr-logo-white{
    max-width: 200px;
    position: absolute;
    bottom:0;
    right:0;
    opacity: 0.5;
}

#explore-content .player-card .usr-img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 275px;
    height: 375px;
    border-radius: 8px;
    align-self: center;
}
/*EXPLORE*/


/*FOOTER*/
#footer{
	text-align: center;
	padding: 10px;
    margin-top: 32px;
    font-size: 12px;
}

#footer a{ 
    color: black;
    white-space: nowrap;
}

/*Terms of Service*/
#terms, 
#privacy, 
#cookie, 
#usage, 
#prp,
#member-restrictions,
#payment-policies,
#trademark-usage-guidelines{
    padding:0 20px;
}

#terms li, 
#privacy li, 
#cookie li, 
#usage li,
#prp li,
#member-restrictions li,
#payment-policies li,
#trademark-usage-guidelines li{
    margin-bottom:12px;
}

#terms a, 
#privacy a, 
#cookie a, 
#usage a, 
#prp a,
#member-restrictions a,
#payment-policies a,
#trademark-usage-guidelines a{
    color:black;
    text-decoration: underline;
}

#terms h3, 
#privacy h3, 
#cookie h3, 
#usage h3, 
#prp h3,
#member-restrictions h3,
#payment-policies h3,
#trademark-usage-guidelines h3{
   margin-top:32px; 
}