@media screen and (max-width: 1750px) {

	#cards img {
		transition: transform 0.5s;
		transform: rotateY(0);
	}

	#comCard {
		display: flex;
		justify-content: space-around;
		margin-top: 50px;
		flex-wrap: wrap;
		flex-direction: row;
	}

	#uncoAndRareCard img {
		height: 270px;
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		flex-direction: row;
	}

	#comCard img {
		height: 230px;
		margin-top: 10px;
		margin-right: 10px;
		margin-left: 10px;
	}

	#land {
		height: 250px;
	}

	#cardInfo {
		position: absolute;
		text-align: center;
		top: 0;
		right: 0;
		width: 23%;
		height: 100%;
		text-align: center;
		box-shadow: 0px 0px 20px black;
		border-left: 3px solid black;
	}
}

/*///////////////////////////////////////////////////////////////*/

@media screen and (max-width: 1000px) {
	#phoneCards {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	#boosterContainer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100px;
		width: 100%;
		text-align: center;
		box-shadow: 0px 0px 20px black;
		border-bottom: 3px solid black;
		overflow: auto;
	}

	#boosterContainer img {
		transition: filter 0.7s;
		width: 75px;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	#boosterContainer img:hover {
		filter: invert(100%);
		cursor: pointer;
	}

	#cards {
		display: none;
	}

	#cardInfo {
		position: absolute;
		height: 75px;
		top: 75px;
		width: 100%;
		z-index: -1;
		background-color: #C9202F;
		border-bottom: 3px solid black;
		text-align: left;
	}
	
	#cardInfo #version {
		width: auto;
	}

	#cardInfo img {
		width: 265px;
		margin-top: 50px;
	}

	#videoBackground {
		height: 100%;
		position: absolute;
		top: 150px;
		left: -1000px;
		z-index: -2;
	}

	#options {
		transition: color 0.7s;
		position: absolute;
		z-index: 100;
		top: 30px;
		left: 5px;
		font-size: 30px;
		font-weight: bold;
	}

	#turnAll {
		display: none;
	}

	#versionInfo {
		transition: color 0.7s;
		margin: 0;
		color: black;
		position: absolute;
		z-index: 100;
		top: 35px;
		left: 45px;
		font-size: 30px;
		font-weight: bold;
	}

	#games {
		transition: color 0.7s;
		position: absolute;
		z-index: 100;
		top: 32px;
		left: 75px;
		font-size: 30px;
		font-weight: bold;
	}

	#version {
		color: white;
		position: absolute;
		z-index: 100;
		top: 85px;
		font-weight: bold;
		font-size: 15px;
		background-color: black;
		padding: 2px;
		border-radius: 5px;
	}

	#optionsDiv, #versionInfoDiv {
		position: absolute;
		padding: 10px;
		text-align: justify;
		border: 5px dashed black;
		border-radius: 15px;
		top: 150px;
		background-color: rgba(255,255,255,0.7);
		left: 50%;
		transform: translateX(-50%);
		width: 75%;
		min-width: 200px;
	}

	#versionInfoDiv h1 {
		text-align: center;
	}

	#versionInfoDiv p:before {
		content: '-';
		margin-right: 5px;
	}

	.anOption {
		font-weight: bold;
	}

	#cardInfo p {
		width: 100%;
	}

	#backgroundColorOption {
		margin-left: 10px;
		margin-top: 12px;
	}

	#turnAllOption {
		margin-left: 10px;
		margin-top: 19px;
	}

	#allowClipOption {
		margin-left: 10px;
		margin-top: 19px;
	}

	#videoBackgroundOption {
		margin-left: 10px;
		margin-top: 19px;
	}

	#allowTurnCardOption {
		margin-left: 10px;
		margin-top: 19px;
	}

	.anOption select {
		margin-left: 10px;
		height: 25px;
		margin-top: 12px;
	}

	#gameGrayOverlay {
		position: absolute;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		top: 0;
		left: 0;
		width: 100%;
		height: 1000px;
		background-color: rgba(0,0,0,0.75);
		z-index: 100;
	}


	#gameGrayOverlay div {
		transition: 0.5s;
		color: white;
		margin: 25px;
		padding: 25px;
		width: 200px;
		height: 150px;
		border-radius: 10px;
		border: 5px solid white;
		text-align: center;
		background-position: center;
		z-index: 1000000;
	}

	#gameGrayOverlay div:hover {
		transition: 0.5s;
		width: 250px;
		cursor: pointer;
	}

	#gameGrayOverlay h1 {
		font-weight: bold;
		-webkit-text-stroke: 1px black;
		margin-top: -20px;
	}
}