@charset "UTF-8";
/* CSS Document */

/* custom fonts */
@font-face {
    font-family: 'oicnormal'; /*a name to be used later*/
    src: url('CormorantGaramond-Light.ttf'); /*URL to font*/
}

@font-face {
    font-family: 'oicbold'; /*a name to be used later*/
    src: url('CormorantGaramond-Bold.ttf'); /*URL to font*/
}

@media only screen and (min-device-width: 480px){}

html, body {
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
	margin: 0;
	padding: 0px;
	background-color: #101010;
	color: #eee;
	font-family: 'oicnormal';
	width:100%;
	height:100%;
	overscroll-behavior: none;
	/*overflow:hidden;*/
	overflow: hidden;
}

body {
	overflow:auto;
}

#contents_vinyl {
	width:100%;
	background-color:#000;
	overflow: hidden;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

#about_contents {
	padding: 12px;
}

#about_image_1 {
	background-image: url("about1.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 320px;
	margin-top: 12px;
}

#about_image_2 {
	background-image: url("about2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 320px;
	margin-top: 12px;
}

#about_image_3 {
	background-image: url("about3.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 320px;
	margin-top: 12px;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	width: 100%;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}  

.dropbtn {
	background-color: #101010;
	color: #eee;
	padding: 4px;
	font-size: 16px;
	border: none;
	height: calc(100% - 2px);
	margin-top: 1px;
	font-family: 'oicbold';
	border: 1px solid #ccc;
	width: calc(100% - 4px);
	margin-left: 2px;
	cursor:pointer;
}

#dropbtn_quantity, #dropbtn_sides {
	padding-top: 0;
}

.product_option_dropdown {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.product_option_dropdown:hover .dropdown-content {display: block;}
.product_option_dropdown:active .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.product_option_dropdown:hover .dropbtn {background-color: #fff;}

.product_option {
	width: 100%;
	height: 30px;
	border-bottom: 1px solid #ccc;
	background-color: #f7f7f7;
}

.product_option_left {
	width: calc(50% - 8px);
	float: left;
	height: calc(100% - 4px);
	padding-left: 8px;
	padding-top: 4px;
	border-right: 1px solid #ccc;
	text-align: left;
	font-size: 18px;
	font-family: 'oicnormal';
	cursor: default;
}

#fname, #femail {
	font-size: 14px;
	margin-top: 4px;
	margin-left: 2px;
	width: calc(100% - 12px);
	font-family: 'oicnormal';
}

.product_option_right {
	width: calc(50% - 1px);
	height: 100%;
	float: right;
}

#product_bottom_button:hover {
	background-color: #aaa;
}

#product_bottom_button {
	width: calc(100%);
	height:30px;
	text-align: center;
	font-size: 18px;
	font-family: 'oicbold';
	cursor: pointer;
	padding-top: 4px;
	/*position: absolute;
	bottom: 30px;*/
	background-color: #ddd;
	border-top: 1px solid #ccc;
	transition: all 0.5s;
}

#product_option_subtotal {
	text-align: right;
	font-size: 18px;
	font-family: 'oicbold';
	cursor: default;
	padding-top: 2px;
	padding-right: 4px;
	width: calc(50% - 8px);
}

#product_option_tax {
	text-align: right;
	font-size: 18px;
	font-family: 'oicbold';
	cursor: default;
	padding-top: 2px;
	padding-right: 4px;
	width: calc(50% - 8px);
}

#product_option_total {
	text-align: right;
	font-size: 18px;
	font-family: 'oicbold';
	cursor: default;
	padding-top: 2px;
	padding-right: 4px;
	width: calc(50% - 8px);
}

#product_top_contents {
	width:calc(100%);
	height:280px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ccc;
}

#product_bottom_contents {
	width:calc(100%);
	height:calc(100% - 256px);
	background-color: black;
}

#product_bottom_header {
	width:100%;
	text-align:center;
	font-family: 'oicbold';
	padding-top: 2px;
	font-size: 18px;
	height: 26px;
	background-color: #101010;
	border-bottom: 1px solid #ccc;
	cursor: default;
}

.product_item {
	background-color: #101010;
	border: 1px solid #444;
	height: 256px;
	cursor: pointer;
}

.product_title {
	margin-top:12px;
	text-align: center;
}

.product_thumbnail {
	width: 90%;
	height: 160px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 8px;
	background-image: url('12inch.jpg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #ccc;
	background-color:#fff;
	opacity: 1;
	transition: all .3s;
}

.product_thumbnail:hover {
	opacity: 0.5;
}

.product_layout {
	width: calc(100% - 16px);
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin: 8px;
	height: 128px;
}

#contents_releases {
	height: calc(100% + 32px);	
}

#product_detail_thumbnail {
	width: calc(50% - 16px);
	height: calc(100% - 18px);
	margin-left:8px;
	margin-right: auto;
	margin-top: 8px;
	background-image: url('12inch.jpg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #ccc;
	background-color:#fff;
	display: inline-block;
	float:left;
}


.release_item {
	background-color: #101010;
	border: 1px solid #444;
	height: 320px;
	cursor: pointer;
}

.release_title {
	margin-top:10px;
	text-align: center;
	font-size:16px;
}

.release_thumbnail {
	width: 90%;
	height: 160px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 8px;
	background-image: url('12inch.jpg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #ccc;
	background-color:#333;
	opacity: 1;
	transition: all .3s;
}

.release_thumbnail:hover {
	opacity: 0.5;
}

.release_layout {
	width: calc(100% - 16px);
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin: 8px;
	height: 128px;
}

#product_detail_thumbnail {
	width: calc(50% - 16px);
	height: calc(100% - 18px);
	margin-left:8px;
	margin-right: auto;
	margin-top: 8px;
	background-image: url('12inch.jpg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #ccc;
	background-color:#fff;
	display: inline-block;
	float:left;
}

#contents_product_detail {
	width:100%;
/*	height: calc(100% + 113px);	*/
	background-color:#000;
	overflow:scroll;
}

#product_option_space {
	border: none;
}

#product_spacer {
	width: calc(100%);
	height: 8px;
}

#product_detail {
	width: calc(100% - 16px);
	height: calc(100% - 120px);
	background-color: #fff;
	margin-left: 8px;
	margin-right: 8px;
}

#product_detail_header {
	width: 100%;
	height: 48px;
	background-color: #101010;
	border-bottom: 1px solid #ccc;
}

#product_detail_copy {
	width: calc(50% - 34px);
	height: calc(100% - 34px);
	margin-right:8px;
	margin-left: auto;
	margin-top: 8px;
	border: 1px solid #ccc;
	background-color:#ddd;
	color: #000;
	display: inline-block;
	float:right;
	padding: 8px;
	font-family: 'oicnormal';
}

#services_header, #about_header, #releases_header {
	width: 100%;
	height: 36px;
	background-color: #101010;
	border-bottom: 1px solid #ccc;
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	cursor:default;
	padding-top:8px;
	font-family: 'oicnormal';	
	text-align: center;
}

#product_detail_header_contents {
	width:calc(100% - 80px);
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	cursor:default;
	padding-top:12px;
	font-family: 'oicnormal';	
	text-align: center;
}

#product_detail_header_back {
	background-image: url("back.png");
	background-size: 80%;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	width:48px;
	height:48px;
	float:left;
}

.product_page {
	width:calc(100% - 16px);
	margin-left:8px;
	margin-right:8px;
	margin-top:8px;
	height:calc(100% - 256px);
	background-color: #101010;
	border: 1px solid #777;
}

#header {
	width:100%;
	height:64px;
	border-bottom: 1px solid #333;
	background-color: #101010;
	text-align: center;
	cursor: default;
	color: #eee;
	position: fixed;
	user-select: none; /* supported by Chrome and Opera */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */	
}

#header_contents {
	width:calc(100% - 128px);
	display: inline-block;
}

#header_logo {
	background-image: url("pear_logo.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	width:48px;
	height:48px;
	margin:8px;
	float:left;
}

.product_total {
	width: calc(100%);
	height: 31px;
	/*position: absolute;
	bottom: 64px;*/
	border-top: 1px solid #ccc;
	background-color: #e7e7e7;
}

.product_tax {
	width: calc(100%);
	height: 31px;
	/*position: absolute;
	bottom: 96px;*/
	border-top: 1px solid #ccc;
	background-color: #f1f1f1;
}

.product_subtotal {
	width: calc(100%);
	height: 31px;
	/*position: absolute;
	bottom: 128px;*/
	border-top: 1px solid #ccc;
	background-color: #f1f1f1;
}

#header_menu {
	/*background-image: url("menu_icon.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;*/
	width:48px;
	height:48px;
	margin:8px;
	float:right;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #101010;
	border-top: 1px solid #333;
	color: #eee;
	text-align: center;
	font-family: 'oicbold';	
	display:inline-block;
	height: 32px;
	cursor: default;
  }

#title {
	font-size:28px;
	font-weight: normal;
	cursor:default;
	padding-top:4px;
	font-family: 'oicnormal';	
}

#subtitle {
	font-size:12px;
	margin-top:3px;
}

#product_detail_name {
	
}

.footermenu {
	margin:6px;
	cursor: pointer;
	display: inline-block;
	opacity: 0.5;
	transition: all .3s;
}

.footermenu:hover {
	opacity: 1.0;
}

.contents {
	width: 100%;
	height:calc(100% - 96px);
	margin-top: 64px;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
.contents::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

#contents_home {
	background-image: url("oic_bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#oic_logo {
	background-image: url("pear_logo.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width:50%;
	height:50%;
	margin-left:auto;
	margin-right:auto;
	padding-top:64px;
	padding-bottom:64px;
}

#links {
	display:inline-block;
	width:100%;
	font-size:28px;
	font-family: 'oicbold';
}

#link_mp3 {
	float:left;
	cursor:pointer;
	padding-left:48px;
}

#link_wav {
	float:right;
	cursor:pointer;
	padding-right:48px;	
}

#format_title {
	width:100%;
	height:32px;
	text-align: center;
	font-size: 18px;
	color: #eee;
}

/* unvisited link */
a:link {
  color: #000;
}

/* visited link */
a:visited {
	color: #000;
}

/* mouse over link */
a:hover {
	color: #000;
}

/* selected link */
a:active {
	color: #000;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 0.5em 0;
    padding: 0;
}