#covid-alert {
    height: 100px;
    width:100%;
    display: flex;
    flex-wrap: nowrap;
    margin: 4px 0;
	background-color:white;
}
#covid-alert .covid-left {
    width:35%;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding-right:15px;
    border-right:1px solid #4f4f4f;
}
#covid-alert .covid-left h3 {
    text-align:right;
    margin:0;
	font-size:35px;
	text-transform:uppercase;
}

#covid-alert .covid-right {
    width:auto;
    max-width:100%;
    flex:1;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding-left:15px;
}

#covid-alert .covid-right .text {
    display:flex;
    align-items:center;
    justify-content:center;
    max-width:60%;
}
#covid-alert .covid-right p {
    margin:0;
    font-size:min(3vh,18px);
    font-size:1.5rem;
}
#covid-alert .covid-right p a[href="#tours"] {
	text-decoration:underline;
	color:#77546C;
}

#covid-alert .covid-right .button {
    flex:1;
    max-width:40%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.button a {
    display: inline-block;
    padding:1rem 0;
    text-align:center;
    width:150px;
    color: #fff;
    font-size:22px;
	background-color:#77546C;
	text-transform:uppercase;
	font-family: 'Trade Gothic LT Std Cn';
	font-weight:normal;
}

#covid-alert .covid-right .close {
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    height:92px;
    width:92px;
    margin-right:15px;
    cursor:pointer;
    font-size:25px;
}

.virtual-tours-parent {
	padding-top:0;
	margin:0!important;
}

.tour-item {
	display:flex;
	width:100%;
	margin: 20px 0;
	height:160px;
	cursor:pointer;
	background-color:rgba(0,0,0,0.1);
	transition:0.3s all;
}

.tour-item:hover {
	background-color:rgb(114, 80, 103,0.2);
}

.tour-item .tour-item-img {
	height:100%;
	width:25%;
	margin-right:15px;
	background-size:cover;
	background-position:center;
}
.tour-item-meta {
	flex:1;
	height:100%;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
	padding-left:15px;
	text-align:center;
}
.tour-item-meta .name {
	font-size:30px;
	line-height:30px;
	font-weight:bold;
	margin-bottom:10px;
	font-family: 'Trade Gothic LT Std Cn';
	text-transform:uppercase;
    color: #725067;
}
.tour-item-meta .desc {
	font-size:18px;
}



#tour-wrap {
	z-index:10000000;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background-color:rgba(0,0,0,0.2);
	position:fixed;
}

#tour-popup {
	position:fixed;
	top:10%;
	bottom:10%;
	left:10%;
	right:10%;
	z-index:10000001;
	background-color:white;
}

#tour-popup .bar {
	height:48px;
	width:100%;
	display:flex;
}

#tour-popup .bar .close {
	width:48px;
	margin-left:auto;
	cursor:pointer;
}
#tour-popup .bar .close i {
	line-height:48px;
	font-size:22px;
	text-align:center;
}

#tour-popup iframe {
	height:calc(100% - 48px);
	border:0;
	width:100%;
}

@media screen and (max-width: 768px) {
    #site-wrapper {
        margin-top:10px;
    }
    #covid-alert {
        padding-top:50px;
        height:auto;
        min-height:100px;
        flex-wrap:wrap;
        position:relative;
        margin-bottom:30px;
    }
    #covid-alert .covid-left {
        width:100%;
        margin: 0 15px;
        justify-content:center;
        padding:0;
        padding-bottom:15px;
        border-right:none;
        border-bottom: 1px solid #4f4f4f;
    }
	#covid-alert .covid-left h3 {
		text-align:center;
	}
    #covid-alert .covid-right {
        flex-wrap:wrap;
        width:100%;
        margin: 0 15px;
        padding-top:15px;
    }
    #covid-alert .covid-right > * {
        width:100%;
        max-width:100%!important;
    }
    #covid-alert .covid-right p {
        text-align:center;
    }
    #covid-alert .covid-right .button {
        margin: 15px 0;
    }
    #covid-alert .covid-right .close {
        position:absolute;
        top:0px;
        right:0;
        height:42px;
        width:42px;
        margin-right:0;
    }
	
	
	.tour-item {
		flex-direction:column;
		height:auto;
		padding-bottom:20px;
	}
	.tour-item .tour-item-img {
		height:30vh;
		width:100%;
		margin:0!important;
	}
	
	.tour-item-meta{
		margin-left:0;
		padding-left:0;
		margin-top:20px;
		height:40vh;
		width:100%;
		flex-direction:column;
		align-items:center;
	}
	.tour-item-meta > * {
		display:block;
		text-align:center;
		margin:0;
	}
	#tour-popup {
		position:fixed;
		top:2%;
		bottom:5%;
		left:5%;
		right:5%;
	}
}

@media screen and (min-width: 768px) {	#covid-alert .covid-right .close {display:none!important;}}