.mb-1 {
	margin-bottom: 1rem;
}
.mb-2 {
	margin-bottom: 2rem;
}
.mb-3 {
	margin-bottom: 3rem;
}
.mb-4 {
	margin-bottom: 4rem;
}
.mb-5 {
	margin-bottom: 5rem;
}
.uploader-row {
	display: flex;
	flex-flow: row wrap;
}

.uploader-col-half {
	flex: 0 0 45%;
	width: 45%;
	max-width: 50%;
	padding-left: 15px;
	padding-right: 15px;
}
.uploader-col-full {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;	
}
.height-100 {
	height: 100%;
}
#drag-and-drop-zone {
	padding: 20px;
	border: 5px dashed #ccc;
	text-align: center;
}
#drag-and-drop-zone h1, #drag-and-drop-zone h2, #drag-and-drop-zone h3, #drag-and-drop-zone h4, #drag-and-drop-zone h5, #drag-and-drop-zone h6 {
	margin-top: 0;
	margin-bottom: 10px;
}
#drag-and-drop-zone .info {
	color: #ff0000;
	margin-bottom: 20px;
	display: block;
}
.uploader-list-unstyled {
	list-style: none;
	padding: 0;
}
.upload-file-progress {
	border: 1px solid #ccc;
}
.upload-file-progress .heading {
	background: #eee;
	padding: 15px 20px;
}
.upload-file-progress #files {
	padding: 15px 20px;
}
@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}
@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}
.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #007bff;
    transition: width 0.6s ease;
}
.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}
.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}
.bg-primary {
  background-color: #007bff !important;
}

.tab-menu{}
.tab-menu ul{
	margin: 0;
	padding: 0;
}
.tab-menu ul li{
	list-style-type: none;
	display: inline-block;
	margin-bottom: 50px;
}
.tab-menu ul li a{
	text-decoration: none;
	color: rgba(0,0,0,0.4);
	padding: 7px 25px;
	border-radius: 4px;
}
.tab-menu ul li a.active-a{
	background-color: #588d7d;
	color: #ffffff;
}
.tab{
	display: none;
}
.tab h2{
	color: rgba(0,0,0,.7);
}
.tab p{
	color: rgba(0,0,0,0.6);
	text-align: justify;
}
.tab-active{
	display: block;
}