/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/


.header-top-menu-bar{
	background-color: #91011D;
	color:white;
	position: fixed;
	width: 100%;
	top: 0px;
	max-height: 32.5px;
	padding: 3px 20px;
	z-index: 9999;
}
.float-right{
	float: right;
}
.float-left{
	float: left;
}
.site{
	margin-top: 32.5px;
}
.custom-row{
	display:flex;
	flex-wrap:wrap;
	margin-right:-15px;
	margin-left:-15px
}
.custom-wrapper{
	position:relative;
	width:100%;
	padding-right:15px;
	padding-left:15px;
	flex-basis:0;
	flex-grow:1;
	max-width:100%
}
.top-left{
	flex:0 0 25%;
	max-width:25%
}
.top-left>div{
	display: inline;
}
.Login-link-top{
	border-right: 1px solid white;
	margin-right: 8px;
	padding-right: 8px;
}
.Login-link-top a{
	font-size: 15px;
	font-weight: bold;
}
.Login-link-top a i{
	font-size: 16px;
}
.top-center{
	flex:0 0 50%;
	max-width:50%
}
.top-right{
	flex:0 0 25%;
	max-width:25%
}
.header-top-text{
	font-size: 14px;
	font-weight: bold;
}
.header-top-menu-bar a{
	color:white;
}
.header-top-menu-bar .social-links a i{
	font-size: 20px;
}
.social-links ul{
	list-style: none;
	display: inline-block;
	margin: 0px;
}
.social-links ul li{
	display: inline-block;
	vertical-align: middle;
    line-height: 20px;
}
.mobile-only{
	display:none;
}
@media (max-width: 767px) {
	.top-left{
		display:none;
	}
	.desktop-only{
		display:none;
	}
	.top-center{
		flex:0 0 80%;
		max-width:80%
	}
	.top-right{
		flex:0 0 20%;
		max-width:20%	
	}
	.mobile-only{
		display: block;
		font-size: 12px;
	}
	.header-top-menu-bar{
		padding:3px 10px;
	}
	.top-right.custom-wrapper {
		padding-right: 5px;
	}
}


.file-upload {
	position: relative;
	display:block;	
	width:150px;
	height:150px;
	border-radius: 3px;
	background-color:rgba(0,0,0,0.3);
	font-size: 14px;
	color:white;
	text-align: center; 
	line-height: 150px;

}

.file-upload input {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
}

.file-preview img{
	width:100%;
	height: auto;
}

.file-preview .ibenic_file_preview {
	position: absolute;
	width:100%;
	height:100%;
	overflow: hidden;
}

.ibenic_file_delete {
	position: absolute;
	width: 100%;
	top:98%;
	left:0;
	padding:0.5em;
	text-align: center;
	color:white;
	background-color:red;
}
.alert {
	display:block;
	width:100%;
	padding:.25em .5em;
	font-size:1.25em;
	text-align: center;
	color:white;
	border-radius: 3px;	
}

.alert-success {
	background-color:green;
}

.alert-danger {
	background-color:red;
}