@charset "utf-8";

:root {
    --white: #FFFFFF;
    --grey-palette-1: #DCDCDC;
    --grey-palette-2: #ABABAB;
    --grey-palette-3: #7F7F7F;
    --grey-palette-4: #4D4D4D;
    --grey-palette-5: #090909;
    --red-palette-1: #8D4042;
    --red-palette-2: #712325;
    --red-palette-3: #500E0f;
    --red-palette-4: #310102;
    --red-palette-5: #170001;
    --discord-blurple-3: #5865F2;
    --discord-blurple-4: #7C85F6;
    --steam-black-palette-3: #000000;
    --steam-black-palette-4: #464646;
}

/* CSS Document */
body {
	background-image: url("../img/background-01.jpg");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	font-family: "Raleway", sans-serif;
    font-size: 1.1rem;
}
nav.nav {
	position: fixed;
	top: 0;
	left: 0;
	height: 4rem;
	width: 100%;
	background-color: rgba(9,9,9,0.75);
	z-index: 999;
	backdrop-filter: blur(0.15rem);
}
.nav .logo {
    height: 4rem;
}
.nav .img-link {
    height: 1rem;
}
.nav .container,
main .buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.flex-end {
    margin-left: auto;
}
.hand {
	width: 19.5%;
	margin-bottom: -8.4%;
	bottom: 0;
	user-select: none;
	position: fixed;
	pointer-events: none;
    z-index: 999;
}
.left-hand{
	left: 0;
}
.right-hand{
	scale: -1 1;
	right: 0;
}
.wiggle-hand {
	display: inline-block;
	animation: wiggle 5s infinite ease-in-out
}
@keyframes wiggle {
	0% {
		transform: rotate(0.5deg)
	}
	50% {
		transform: rotate(-0.5deg);
		transform: translateY(15px)
	}
	100% {
		transform: rotate(0.5deg)
	}
}
@media (min-width: 1890px) {
	.container {
		flex-wrap: wrap;
		width: 1280px;
		margin: auto
	}
    .column {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 1;
    }
    .column-double {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 2;
    }
}
@media (min-width: 1050px) and (max-width: 1890px) {
	.container {
		flex-wrap: wrap;
		width: 1024px;
		margin: auto
	}
    .column {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 1;
    }
    .column-double {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 2;
    }
}
@media (max-width: 1050px) {
	.container {
		flex-wrap: wrap;
		width: 100%;
		margin: auto
	}
    .column {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
    }
    .column-double {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
    }
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    z-index: 0;
}
.spacer-fourandhalf {
    margin-top: 4.5rem;
}
.rounded-box {
    margin: 0.5rem 0.5rem 1rem;
	filter: drop-shadow(0.25rem 0.5rem 0.1rem var(--red-palette-3));
	box-shadow: inset 0.1rem 0.1rem 0.1rem 0 rgba(220,220,220,0.05), inset -0.1rem -0.1rem 0.1rem 0 rgba(9,9,9,0.05);
    height: fit-content;
	background-color: var(--grey-palette-5);
    padding: 0.1rem;
/*    border: 0.15rem solid var(--grey-palette-3);*/
}
.rounded-box-2 {
    margin: 0.5rem 0.5rem 1rem;
    height: fit-content;
	background-color: var(--grey-palette-4);
    padding: 0.1rem;
}
.round-corner {
	border-radius: 0.5rem;
}
.padding-onerem {
    padding: 0.5rem 1rem;
}
.item-full:hover {
	background-color: var(--grey-palette-4);
}
h3 {
    margin: 0;
}
.uppercase {
    text-transform: uppercase;
}
a {
    color: inherit;
    text-decoration: inherit;
}
.site-location a:hover {
    color: var(--red-palette-1)
}
.tooltip {
	position: relative;
	display: inline-block
}
.tooltip .tooltiptext {
	visibility: hidden;
	width: auto;
	background-color: var(--grey-palette-5);
	color: var(--white);
	text-align:left;
	padding: 0.75rem;
	border-radius: 6px;
	white-space: nowrap;
	line-height: 1.5;
	position: absolute;
	z-index: 1;
	top: 100%;
    right: -28%;
}
.tooltip:hover .tooltiptext {
	visibility: visible
}
.main-content {
	z-index: 3;
}
.climb-stats {
	z-index: 2;
}
.recent-climbs {
	z-index: 1;
}
h1 {
    margin: 0;
}
.site-location {
    font-size: 0.8rem;
    color: var(--red-palette-3);
}
button {
    cursor: pointer;
}
button {
    background: none;
	border: 1px solid var(--grey-palette-4);
	padding: 0.5rem;
	text-transform: none;
	color: var(--white);
	border-radius: 0.25rem;
	font-weight: 700;
    
}
button:hover {
    background-color: var(--grey-palette-4);
}
button.selected {
    background-color: var(--red-palette-3);
}
button.selected:hover {
    background-color: var(--red-palette-1);
}
.align-left{
	text-align:left;
}
.align-center{
	text-align: center;
}
.hidden {
	display: none;
}
.climb-table {
    width: 100%;
    border-collapse: collapse;
}
.climb-table td {
    padding: 0;
}
tr.hover:hover {
	background-color: var(--grey-palette-4);
}
tr.red {
    background-color: var(--red-palette-1);
}
td a {
    display: block;
}
.center {
    margin: auto;
}
/* Everything above this line is template base layout */
/* Climb Creation Page */
.section-label{
    text-decoration: underline;
    font-size: 1.25rem;
    margin: 0.5rem 0;
    font-weight: bold;
}
.submission-form #category {
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: var(--grey-palette-5);
    border: 0.2rem solid var(--grey-palette-4);
    border-radius: 0.2rem;
    color: white;
}
.submission-form #category:hover {
    background-color: var(--grey-palette-4);
}
.submission-form #category:focus {
    background-color: var(--grey-palette-4);
    border-color: var(--red-palette-3);
}
.section {
    margin-bottom: 1rem;
    border-bottom: 0.1rem solid var(--grey-palette-4);
    padding: 0 0 1rem;
}
.form-checkbox {
    display: inline-block;
}
.submission-form input:hover,
.submission-form #description:hover,
.submission-form #mod-notes:hover {
    background-color: var(--grey-palette-4);
}
.submission-form input:focus,
.submission-form #description:focus,
.submission-form #mod-notes:focus {
    background-color: var(--grey-palette-4);
    border-color: var(--red-palette-3);
}
select,
input,
textarea {
    font-size: 1.1rem;
    outline: none;
}
.submission-form input {
    padding: 0.5rem 1rem;
    background-color: var(--grey-palette-5);
    border: 0.2rem solid var(--grey-palette-4);
    border-radius: 0.2rem;
    color: white;
}
#mediaURL {
    width: 95%;
}
#description,
#mod-notes {
    width: 100%;
    height: 5rem;
    background-color: var(--grey-palette-5);
    border: 0.2rem solid var(--grey-palette-4);
    color: white;
}
#duration input {
    width: 1.8rem;
    border: none;
    padding: 0;
}
#duration {
    width: 11rem;
    background-color: var(--grey-palette-5);
    border: 0.2rem solid var(--grey-palette-4);
    border-radius: 0.2rem;
    padding: 0.5rem 0;
}
#duration:focus-within {
    border-color: var(--red-palette-3);
}
.submission-climb-info input {
    text-align: right;
    width: 9rem;
}
/* Climb View */
iframe {
    border: none;
    width: 100%;
    aspect-ratio: 16/9;
}
.climb-view-stats {
    margin: 0.25rem;
}
.climb-view-stats .title {
    font-size: 0.8rem;
    color: var(--grey-palette-3);
    padding-left: 0.25rem;
}
.item {
    background-color: var(--grey-palette-4);
    margin: 0.25rem 0;
    padding: 0.25rem;
    border-radius: 0.25rem;
}
.view-title {
    color: grey;
}
.bold {
    font-weight: bold;
}
.white {
    color: white;
}
h4 {
    margin: 0;
    padding: 0;
}
.small-text {
    font-size: 0.8rem;
}
.size-12 {
    width: 3rem;
    height: 3rem;
}
.round-full {
    border-radius: 99999rem;
}
/* Login and Register CSS */
.oauth-buttons form,
.oauth-buttons form button {
    width: 100%;
}
.discord {
    background-color: var(--discord-blurple-3);
}
.discord:hover {
    background-color: var(--discord-blurple-4);
}
.steam {
    background-color: var(--steam-black-palette-3);
}
.steam:hover {
    background-color: var(--steam-black-palette-4);
}