
#navbar {z-index:1}

p {
	color: #828282;
}

.quote-container {
    min-width: 320px;
}

.deck-container {
	display: flex;
	align-items: flex-start;
	max-width: 1200px;
    min-width: 320px;
    margin: auto;
}

.deck-container > div {
	display: flex;
    flex-direction: column;
}

.table-container {
	display: flex;
    flex-direction: column;
	justify-content: center;
    min-width: 320px;
    margin: auto;
	background-color: #F7F7F7;
	gap: 20px;
	padding: 40px 0px;
	scroll-margin-top: 42px;
}

.leftPanel {
	width: 500px;
	padding: 40px 20px 60px 80px;
    gap: 40px;
    flex-shrink: 1.5;
}

.onButton {
	align-self: center;
	padding: 12px 24px;
    border-radius: 8px;
    background-color: #000000;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
	cursor: pointer;
    color: #ffffff;
}

.disButton {
	align-self: flex-start;
	padding: 12px 24px;
    border-radius: 8px;
    background-color: #E6E6E6;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    color: #828282;
}

.rightPanel {
	position: relative;
	width: 620px;
    	justify-content: center;
    	flex-shrink: 1;
}

.showcase {
	width: 100%;
	display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.showcase::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.pag {
	display: flex;
	justify-content: center;
    padding: 10px;
    gap: 8px;
}

.slideItem {
	flex-shrink: 0;
    width: 100%;
    overflow: hidden;
    scroll-snap-align: center;
}

img.deck {
	width: 100%;
    aspect-ratio: 1.48;
	object-fit: cover;
    margin: 0 0 -5px 0;
}

img.draw {
	height: 500px;
	width: auto;
	object-fit: contain;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  padding: 10px;
  transition: 0.6s ease;
  border-radius: 3px 0 0 3px;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.dot {
  cursor: pointer;
  height: 16px;
  width: 16px;
  background-color: #E6E6E6;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #FFC34C;
}

@media (pointer: fine){
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.3);
}
.dot:hover {
  background-color: #FFDD99;
}
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: 0; transform: translateY(10px);} 
  to {opacity: 1; transform: translateY(0px);}
}

@media (max-width: 768px) {

.deck-container {
	flex-wrap: wrap;
    justify-content: center;
}

.leftPanel {
	order: 2;
    width: 518px;
    padding: 40px 51px;
}

.rightPanel {
	order: 1;
}

}
    
@media (max-width: 600px) {

.quote-container {
	height: 100%;
    font-size: 30px;
    padding: 40px 0px;
}

div.qsign {
	width: auto; 
}

.leftPanel {
    padding: 40px 20px;
}
	
.prev, .next {
	display: none;
}
	
}

@media (prefers-color-scheme: dark) {

.deck-container .leftPanel .disButton {
    	background-color: #333333;
}
	
.table-container {
	background-color: #292929;
}
	
.onButton {
    background-color: #FFC34C;
    color: #000000;
}
	
} 
