@font-face {
	font-family: 'Gotham';
	src: url('fonts/GothamBook.woff') format('woff'),
	url('fonts/GothamBook.ttf') format('ttf');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Gotham';
	src: url('fonts/Gotham-Bold.woff') format('woff'),
	url('fonts/GothamBold.ttf') format('ttf');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Ambiguity Tradition W00 Inline';
	src: url('fonts/FontsFree-Net-Ambiguity4.woff') format('woff'),
	url('fonts/FontsFree-Net-Ambiguity4.ttf') format('ttf');
	font-weight: 400;
	font-style: normal;
}

body{
	font-family: 'Gotham';
	font-weight: 400;
}
.bg-black{
	background-color: #000;
	color: #fff;
}
header {
	flex-direction: column;
	min-height: 10vh;
}
header .topbar {
	height: 1vh;
}
header .d-flex {
    min-height: 9vh;
    justify-content: center;
    padding: 16px 12px;
}
header .logo {
	height: 3vh;
	min-height: 60px;
}
header h3 {
	margin-top: 1vh;
	font-size: 1rem;
	margin-bottom: 0;
}
#content {
	/* height: 3000px; */
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 86vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#content:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: .4; 
}
main {
	z-index: 999;
	width: 92%;
	/* padding-left: 100px; */
	/* padding-right: 100px; */
	/*padding: 0;*/
	/*max-width: 2080px;*/
	max-width: 1160px;
	margin: auto;
	overflow: hidden;
}
.quiz h3{
	font: normal normal normal 64px/108px 'Ambiguity Tradition W00 Inline';
	text-transform: uppercase;
	color: #C89D2C;
	padding-top: 100px;
}
.quiz .bg-white{
	position: relative;
}
.quiz h4{
	font: normal normal bold 48px/53px Gotham;
	letter-spacing: 0px;
	color: #000000;
}
.quiz .line{
	margin-bottom: 60px;
}
.quiz p{
	font: normal normal normal 32px/46px Gotham;
}
.quiz input[type=radio]{
	display: none;
}
.language-btn{
	border: 5px solid #000000;
}
.quiz .language-btn{
	font: normal normal normal 32px Gotham;
	letter-spacing: 0px;
	padding: 25px;
	background: #fff;
	padding-left: 80px;
	border-radius: 0 !important;
}
.quiz input[type="radio"]:checked+label {
	background: #C89D2C;
	border: 5px solid #C89D2C;
	color: #fff;
}
/*.checkbox-inline {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkbox-inline p {
	margin-left: 8px;
	margin-bottom: 0;
}*/
#output_response {
    margin-top: -30px;
    color: #c39c38;
    margin-bottom: 30px;
    text-align: center;
}
.loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #c89d2d;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: auto;
}
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.btn-group{
	gap: 20px;
	z-index: 99;
}
.submit-button{
	background: #C89D2C;
	border: 5px solid #C89D2C;
	color: #FFFF;
	padding: 20px;
	font: normal normal bold 32px/46px 'Gotham';
	margin-top: 80px;
	margin-bottom: 120px;
	z-index: 9999;
}
.select{
	font: normal normal normal 32px/46px 'Gotham';
	margin-top: 110px;
}
.orange-flower-back{
	position: absolute;
	top: -20%;
	left: -24%;
}
.pink-flower-back{
	position: absolute;
	right: -10%;
	bottom: -25%;
}
.answers{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 60px;
	grid-row-gap: 60px;
	text-align: center;
	padding: 30px;
}
.answers li label{
	text-align: left;
	position: relative;
	margin: 0;
}
.answers li label.pointer-events{
	pointer-events: none;
}
.answers li label img{
	width: 100%;
}
.div-inside-label{
	border: 5px solid #000000;
	/*padding: 50px 0;*/
	padding: 50px 34px;
	padding-left: 100px;
	font: normal normal normal 32px/34px Gotham;
	letter-spacing: 0px;
	position: relative;
}
.li-select{
	border: 12px solid #C89D2C;
	background: #C89D2C;
	transition: ease-in 0.2s;
}
.li-select div {
	border: 5px solid #C89D2C;
	/*border-top: 17px solid #C89D2C;*/
	color: #fff;
	transition: ease-in 0.2s;
}
#myProgress {
	width: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}
#myBar {
	width: 0%;
	height: 20px;
	background-color: #C89D2C;
}
.result{
	text-align: center;
	width: 100%;
	height: 100%;
}
.result .back-rez{
	width: 100%;
}
.result p{
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 1rem;
}
p.result-load-p {
    max-width: 90%;
    margin: auto;
}
.result .two-buttons{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 70px;
}
.result .save-style{
	float: none;
	border: 5px solid #C89D2C;
	background: #C89D2c;
	color: #fff;
	font: normal normal bold 32px Gotham;
	letter-spacing: 0px;
	padding: 20px 35px;
}
.result .reload{
	float: none;
	background: #fff;
	border: unset;
	border-bottom: 4px solid #000;
	border-radius: 0;
	font: normal normal normal 32px Gotham;
	letter-spacing: 0;
	padding-top: 32px;
	padding-bottom: 15px;
}
div.swiper{
	padding-bottom: 100px;
	padding-top: 230px;
	padding-left: 50px;
	padding-right: 50px;
}
.swiper .swiper-pagination-bullet{
	width: 28px;
	height: 28px;
	background: unset;
	border: 4px solid #000;
	opacity: 1;
}
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background: #000000;
	width: 28px;
	height: 28px;
	color: #000000;
	border: none;
}
.pop-up{
	background: #fff;
	padding: 20px;
	position: absolute;
	max-width: 880px;
	width: 100%;
	min-width: 750px;
}
.pop-up img{
	max-width: 175px;
	max-height: 175px;
}
.pop-up .model-name{
	font: normal normal bold 40px/44px 'Gotham';
	letter-spacing: 0px;
	color: #C89D2C;
	text-transform: capitalize;
}
.pop-up .row{
	margin-right: 15px;
	margin-left: 15px;
	text-align: left;
}
.pop-up .row .col{
	padding-left: 0;
}
.pop-up .row .col span{
	font: normal normal normal 32px/42px 'Gotham';
	letter-spacing: 0px;
	color: #000000;
}
.pop-up .brand-name {
    font-family: 'Gotham';
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0px;
    color: #000000;
    margin-top: 1rem;
}
.rotate-icon .plus-svg{
	transform: rotateZ(45deg);
	-webkit-transition: -webkit-transform .2s ease-in-out;
	-ms-transition: -ms-transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
}
.plus-svg{
	-webkit-transition: -webkit-transform .2s ease-in-out;
	-ms-transition: -ms-transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
}
.pop-up-white{
	-webkit-transition: -webkit-transform .2s ease-in-out;
	-ms-transition: -ms-transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
    top: 110%;
    left: 0;
}
.rotate-icon .pop-up-white{
	display: block !important;
	-webkit-transition: -webkit-transform .2s ease-in-out;
	-ms-transition: -ms-transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
}
.finish .result{
	display: block !important;
	position: relative;
}
.swiper .reload img{
	display: inline;
	width: unset;
	height: unset;
}
.quiz .swiper .line{
	width: auto;
	height: auto;
	display: inline-block;
}
div.swiper-result.swiper{
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}
.quiz p.quiz-question{
	font: normal normal normal 48px/52px 'Gotham';
	margin-bottom: 110px;
}
.language-btn::before{
	content: '';
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 5px solid #000;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	background-color: #fff;
	position: absolute;
	left: 10px;
	top: 50%;
    transform: translateY(-50%);
	/* transition: ease-in-out 0.5s; */
}
.div-inside-label::before{
	content: '';
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 5px solid #000;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	background-color: #fff;
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.quiz input[type="radio"]:checked+label::before{
	content: url('../../img/check.png');
	border: unset;
	background: #c69d2b;
	/* transition: ease-in-out 0.5s; */
}
.li-select .div-inside-label::before{
	content: url('../../img/check.png');
	border: unset;
	background: #c69d2b;
}
main {
    margin-top: 50px;
    margin-bottom: 50px;
}
#quiz.quiz-result{
	margin-top: 20px;
	padding: 0;
}
#start-section{
	z-index: 999999;
}
#p-main{
	max-width: 75%;
	margin: auto;
}
/*.quiz{
	overflow: hidden;
}*/

.form {
    z-index: 999999;
    display: none;
    max-width: 90%;
    margin: auto;
}
.form form {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.form form input{
	max-width: 500px;
	width: 100%;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 3px solid #C5C5C5;
	font-size: 22px;
	line-height: 33px;
	font-family: sans-serif;
	padding: 10px;
	margin-bottom: 2rem;
	text-align: center;
}
.form form input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}
.form form select{
	max-width: 500px;
	width: 100%;
	font-size: 22px;
	line-height: 33px;
	font-family: sans-serif;
	padding: 10px;
	border: 3px solid #C5C5C5;
	margin-bottom: 2rem;
	text-align: center;
}
.form form input[type=submit]{
	width: auto;
	/* font: normal normal bold 32px/46px Gotham; */
	border: unset;
	background: #c89d2d;
	color: #fff;
	text-transform: uppercase;
	padding: 15px 50px;
	font-weight: bold;
}
div.swiper-result.swiper, div.swiper-result.swiper .swiper-wrapper, div.swiper-result.swiper .swiper-wrapper .swiper-slide{
	background: transparent;
}
.button-back{
	width: auto;
	/*padding: 0px 10px;*/
	border-bottom: 3px solid #000;
	position: absolute;
	top: 0;
	left: 50px;
	top: 20px;
}
a.button-back.button-back-desktop {
    position: absolute;
    cursor: pointer;
}
#myBar{
	transition: 1s;
}
.result-flower {
    transition: 2s;
    margin: 1rem auto 2rem !important;
    width: 6rem;
    height: auto;
}
.rotate-flower{
	transform: rotate(359deg);
}
.finish .result.load-result{
	display: flex !important;;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	padding-bottom: 50px;
}
#question{
	position: relative;
}
.question{
	position: relative;
	opacity: 0;
}
.z-index9{
	z-index: 9999;
}
.zii{
	position: absolute;
}
.question.question-0{
	opacity: 1;
}

footer {
	min-height: 4vh;
}
/*footer span{
font-size: 30px;
font-family: 'Gotham';
}*/
footer a{
	color: #fff;
}
footer a:hover{
	color: #e2dddd;
	text-decoration: none;
}
.swiper-result .swiper-button-prev{
	left: 5%;
	top: 52%;
}
.swiper-result .swiper-button-next{
	right: 5%;
	top: 52%;
}

/*.button-back.button-back-mobile {
    width: auto;
    padding: 0px 0px 4px 30px;
    border-bottom: 2px solid #000;
    position: absolute;
    top: unset;
    bottom: 5%;
    text-align: center;
    left: 50%;
    -webkit-filter: invert(1);
    filter: invert(1);
    transform: translateX(-50%);
}*/
.button-back.button-back-mobile {
    width: auto;
    padding: 0 0 2px 0;
    border-bottom: 2px solid #fff;
    text-align: center;
    transform: translateX(-50%);
    position: relative;
    margin: 0 auto 3rem;
    color: #fff !important;
    display: inline-block;
    cursor: pointer;
}
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-pagination {
    position: relative;
    bottom: unset !important;
    top: unset !important;
}
#quiz {
	display: none;
	margin-top: 50px;
	font-size: x-large;
}
ul {
	list-style-type: none;
	padding: 0;
	margin-bottom: 10px;
	font-size: smaller;
}
input[type="radio"] {
	margin-right: 15px;
	/* display: inline !important; */
}
button {
	position: relative;
	float: right;
	margin-left: 5px;
	margin-top: 15px;
}

#prev {
	display: none;
}

#start {
	display: none;
	width: 90px;
}

#warning {
	color: #800000;
	font-weight: bold;
	margin-top: 25px;
}

.button-back img {
    width: 18px;
    margin-right: 4px;
    padding-bottom: 1px;
    -webkit-filter: invert(1);
    filter: invert(1);
}
.reload img {
    width: 18px;
    margin-left: 8px;
    padding-bottom: 3px;
}


.tabs-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 80%;
    margin: auto;
}
.tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}
.tabs .tab {
	cursor: pointer;
}
.tabs .tab.active {
    color: #c89d2c;
}
.tab-content {
    display: none;
    max-width: 94%;
    /* border: 1px solid #ccc; */
    padding: 0 1rem;
    text-align: center;
    margin: auto;
}
.tab-content.active {
	display: block;
}



/*@media min-width*/

@media(min-width:768px){
	div.btn-group{
		flex-direction: row;
	}
}
@media(min-width:1025px) {
	.button-back::after {
		zoom: 0.7;
	}
	.orange-flower-back{
		zoom: 0.6;
	}
	.pink-flower-back{
		zoom: 0.6;
	}
	.answers {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: repeat(1, 1fr);
	}
	.quiz h3 {
		font-size: 34px;
		line-height: 44px;
		padding-top: 40px;
	}
	.quiz .line{
		margin-bottom: 2rem;
	}
	.answers{
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
	}
	.div-inside-label{
		zoom: 0.7;
	}
	.icon .plus-svg{
		width: 50px;
		height: 50px;
	}
	.icon .pop-up img{
		max-width: 100px;
		object-fit: contain;
	}
	.icon .model-name {
	    font-size: 22px;
	    line-height: 1;
	}
	.pop-up{
		box-sizing: initial;
		position: relative;
		width: 100%;
		min-width: unset;
		max-width: unset;
		padding: 10px;
	}
	.pop-up-inside-flex{
		width: 100%;
		box-sizing: initial;
		display: block;
		/*min-width: 450px;*/
	}
	.pop-up .brand-name {
	    font-size: 20px;
	    margin-top: 10px;
	    line-height: 1.1;
	}
	.pop-up .row .col span{
		font-size: 24px;
		line-height: 24px;
	}
	.result .save-style{
		font-size: 24px;
		line-height: 30px;
		padding: 10px 50px;
		margin-top: 40px;
		margin-bottom: 40px;
		text-transform: uppercase;
	}
	.result .reload {
	    font-size: 24px;
	    line-height: 30px;
	    padding: 6px 0;
	    margin-top: 40px;
	    margin-bottom: 40px;
	    text-transform: uppercase;
	}
	.reload img {
	    width: 21px;
	    margin-left: 14px;
	    padding-bottom: 7px;
	}
	.result div.swiper {
		padding-bottom: 70px;
		padding-top: 50px;
		padding-left: 50px;
		padding-right: 50px;
	}
	.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background: #000000;
		width: 15px;
		height: 15px;
		color: #000000;
		border: none;
	}
	.swiper .swiper-pagination-bullet {
		width: 15px;
		height: 15px;
		background: unset;
		border: 2px solid #000;
		opacity: 1;
	}
	.quiz p.quiz-question{
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 50px;
	}
	.quiz h4{
		font-size: 34px;
		line-height: 44px;
	}
	.btn-group{
		zoom: 0.6;
	}
	.submit-button{
		font-size: 24px;
		line-height: 30px;
		padding: 10px 50px;
		margin-top: 40px;
		margin-bottom: 40px;
		text-transform: uppercase;
	}
	#p-main {
		font-size: 24px;
		line-height: 30px;
	}
	.select {
		font-size: 26px;
		line-height: 30px;
		margin-top: 50px;
	}

	.li-select .div-inside-label {
		padding: 43px 0;
		padding-left: 100px;
	}
	.li-select div {
		border-top: 17px solid #C89D2C;
	}
	a.button-back-mobile{
		display: none!important;
	}
	.answer label{
		display:block;
	}
	.reload,.button-back{
		position: relative;
	}
	.button-back img {
	    filter: none;
	    width: 21px;
	}
	.answer{
		position: relative;
	}
	.answer .gold-pin{
		position: absolute;
		z-index: 99;
		top: -25px;
		left: 46%;
		width: 50px;
	}
	.two-buttons-mobile{
		display: none !important;
	}


	.answer {
	    display: flex;
	}
	.answer label {
	    display: flex;
	    flex-direction: column;
	    flex-grow: 1;
	}
	.div-inside-label {
	    flex-grow: 1;
	    display: flex;
	    align-items: center;
	}
}


/*@media max-width*/

@media(max-width:1024px){
	.reload,.button-back{
		position: relative;
	}
	a.button-back{
		padding-left: 25px;
	}
	.div-inside-label::before{
		display: none;
	}
	.div-inside-label{
		padding: 10px;
		font-size: 14px;
		line-height: 15px;
		padding: 20px 5px;
		border: 3px solid #000;
		text-align: center;
	}
	.answers {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 10px;
		grid-row-gap: 25px;
		padding: 10px;
	}
	main{
		padding-left: 10px;
		padding-right: 10px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	header h3{
		display: none;
	}
	#start-section{
		width: 100%;
	}
	.quiz h3{
		line-height: 28px;
		font-size: 24px;
	}
	.quiz h4 {
		line-height: 28px;
		font-size: 24px;
	}
	.quiz .line{
		margin-bottom: 20px;
	}
	.quiz input[type="radio"]:checked+label::before {
	    left: 28px;
	    top: calc(50% - 8px);
	}
	.quiz input[type="radio"]:checked+label {
	    border: 2px solid #C89D2C;
	}
	.line{
		max-width: 40%;
	}
	.checkbox-inline,
	.quiz p{
		font-size: 16px;
		line-height: 20px;
		letter-spacing: 1px;
	}
	#content{
		justify-content: center;
		background-size: cover !important;
	}
	.select{
		font-size: 16px;
		line-height: 26px;
		margin-top: 20px;
	}
	.btn-group{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 9px;
	}
	.btn-group label{
		width: 100%;
		margin-bottom: 0;
	}
	.language-btn::before{
		left: 20px;
		zoom: 0.5;
		width: 25px;
		height: 25px;
		border: 2px solid #000;
	}
	.quiz input[type="radio"]:checked+label::before{
		zoom: 0.3;
	}
	.quiz .language-btn{
		padding: 10px 5px 10px 30px;
		font-size: 15px;
		border: 2px solid #000;
		gap: 10px;
	}
	.quiz .language-btn img{
		zoom: 0.5;
	    margin-left: 8px;
	}
	.submit-button{
		font-size: 16px;
		padding: 10px 60px;
		line-height: 23px;
		text-transform: uppercase;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.orange-flower-back,.pink-flower-back{
		zoom: 0.3;
	}
	footer{
		display: none;
	}
	.quiz h3{
		padding-top: 20px;
	}
	.quiz p.quiz-question{
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 20px;
	}
	.answers li.answer{
		position: relative;
	}
	.answers li .gold-pin{
		position: absolute;
		width: 20px;
		height: 20px;
		top: -10px;
		left: 45%;
		z-index: 9999;
	}
	.li-select {
		background: #fff;
		border: unset;
		transition: ease-in 0.2s;
	}
	.li-select label{
		border: 4px solid #C89D2C;
		background: #C89D2C;
		transition: ease-in 0.2s;
	}
	.result .icon{
		display: none;
	}
	.result .two-buttons{
		flex-direction: column;
	}
	.result .two-buttons .save-style{
		font-size: 16px;
		line-height: 21px;
		padding: 15px 65px;
	}
	.result .two-buttons .reload {
	    font-size: 16px;
	    line-height: 1;
	    padding: 5px 0;
	    border-bottom: 2px solid #000;
	    color: #212529;
	    margin-left: 0;
	}
	.result div.swiper{
		padding-bottom: 50px;
		padding-top: 50px;
		padding-left: 30px;
		padding-right: 30px;
	}
	.swiper .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		background: unset;
		border: 2px solid #000;
		opacity: 1;
	}
	.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
		width: 10px;
		height: 10px;
	}
	.two-buttons-desk .reload{
		display: none !important;
	}
	.two-buttons-desk{
		gap: 0;
	}
	.two-buttons-mobile{
		margin-bottom: 30px;
	}
	div div.swiper-result{
		padding-bottom: 0;
	}
	a.button-back-desktop{
		display: none !important;
	}
}
@media(max-width:767px) {
	#start {
		margin-left: 25px;
	}
	header .logo {
	    min-height: 44px;
	}
	footer {
	    flex-wrap: wrap;
	    padding: 20px 0 10px;
	}
	.form form input{
		width: 70%;
		font-size: 18px;
		line-height: 24px;
	}
	.form form select{
		width: 70%;
		font-size: 18px;
		line-height: 24px;
	}
	form > p {
	    margin-bottom: 8px !important;
	}
	main {
	    width: calc(96% - 30px);
	}
	.tabs-wrap {
	    max-width: 96%;
	}
	.tabs {
	    gap: 0rem;
	    flex-direction: column;
	}
}


@media screen and (max-height: 1900px) {
	header {
	    min-height: 15vh;
	}
	header .d-flex {
	    min-height: 14vh;
	}
	#content {
	    min-height: 81vh;
	}
}



 /*Scherm touchscreen*/
@media screen and (orientation:portrait) and (width:1080px) and (height: 1920px) {
	/*.bg-black {
		background-color: red;
	}*/
}