@import url('https://fonts.googleapis.com/css?family=Montserrat:wght@100;300;400;500;700;900&display=swap');

@-ms-viewport { width: device-width; }

a {
	color: rgb(255, 32, 1);
	text-decoration: none;
}
a:hover {
	color: rgb(0, 200, 245);
	cursor: pointer;
	text-decoration: none;
	transition: .5s;
}
body { 	margin: 0;}
body, html, label {
	align-items: center;
	background-color: rgb(240, 240, 240);
	color: rgb(128, 128, 128);
	font-family: Montserrat, Helvetica, Arial, Verdana;
	font-size: 10pt;
	height: 100%;
	width: 100%;
}
footer {
	background-color: rgb(225, 225, 225);
	min-height: 40px;
}
hr { border-bottom: 1px solid rgb(128, 128, 128); }
img { border: 0; }
input, select, button, textarea {
	margin: 5px 0;
	padding: 10px;
}
input[type=checkbox] { cursor: pointer; }
input[type=checkbox], input[type=email], input[type=password], input[type=text], select, textarea { border: 1px solid rgb(240, 240, 240); }
input[type=button], input[type=Submit], button {
	background-color: rgb(255, 32, 1);
	border-width: 0;
	color: rgb(255, 255, 255);
	padding: 10px 20px;
}
input[type=Submit]:focus, input[type=Submit]:focus, button:focus { background-color: rgba(255, 32, 1, .75); }
input[type=Submit]:hover, input[type=Submit]:hover, button:hover {
	background-color: rgba(255, 32, 1, .5);
	cursor: pointer;
	transition: .5s;
}
input[type=Submit]:active, input[type=Submit]:active, button:active {
	background-color: rgba(255, 32, 1, .25);
	color: rgb(128, 128, 128);
}
input[type=Submit]:disabled, input[type=Submit]:disabled, button:disabled {
	background-color: rgb(200, 200, 200);
	color: rgb(100, 100, 100);
}
input:focus, select:focus, button:focus, textarea:focus { outline: none !important;}
input[type=checkbox]:after {
	content: attr(value);
	margin: -3px 15px;
	vertical-align: top;
	white-space:nowrap;
	display: inline-block;
}
main {
	margin-top: 105px;
	min-height: calc(100vh - 145px);
}
nav {
	background-color: rgb(255, 255, 255);
	box-shadow: 0 0 1px rgb(40, 40, 40);
    color: rgb(40, 40, 40);
    min-height: 80px;
	position: fixed;
	width:100%;
	z-index: 1;
}
	nav a { color: rgb(40, 40, 40); }
	nav a:hover { color: rgb(255, 32, 1); }

.box {
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(225, 225, 225);
	box-shadow: 1px 1px 5px rgba(225, 225, 225, .5);
	margin: 5px;
	padding: 10px;
}
.btn-more {
	background-color: transparent !important;
	color: rgb(40, 40, 40);
	cursor: pointer;
	display: none;
	font-size: xx-large;
	font-weight: bold;
	padding: 0 5px;
}
[class*="col-"] { float: left; padding: 0; }
.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-2-3 { width: 20%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }
.copyright {
	padding: 10px;
	min-width: 200px;
	font-size: small;
}
.important-link {
	background-color: rgb(0, 200, 245);
	border-radius: 10px;
	padding: 8px 20px;
}
.important-link:hover, .important-logout-link a:hover {
	background-color: rgb(128, 128, 128) !important;
}
.important-link a:hover, .important-logout-link a:hover {
	color: rgb(255, 255, 255) !important;
}
.important-logout-link a{
	background-color: rgb(255, 0, 0) !important;
	border-radius: 25px;
	color: rgb(255, 255, 255) !important;
	padding: 8px 20px;
}
.mobile {
	display: none;
}
.nav-links, .nav-links-btn {
	float: right;
	padding: 40px 5px 5px 5px;
}
    .nav-links > div {
        padding: 5px;
    }
        .nav-links > div > div {
            cursor: pointer;
            float: left;
            padding: 5px 10px;
        }
        .nav-links > div > div:hover {
            color: rgb(255, 32, 1);
			transition: .5s;
        }
.nav-logo {
	float: left;
	height: 100px;
	padding: 10px 0;
}
	.nav-logo img {
		height: 100%;
		margin: auto 10px;
	}
.subtitle {
	font-size: x-large;
	color: rgb(128, 128, 128);
}
.widthauto {
	margin: auto;
	max-width: 1200px;
	width: 100%;
}

@media only screen and (min-width: 1020px) {
    #menu-mobile {
		display: block;
	}
}

/* TABLET */
@media only screen and (max-width: 1020px) {
	.btn-more {
		display: block;
	}
	.nav-links {
	    float: none;
        padding-top: 105px;
		width: 100%;
    }
        .nav-links > div {
            background-color: rgb(40, 40, 40);
            color: rgb(255, 255, 255);
        }
        .nav-links > div > div > a {
            color: rgb(255, 255, 255);
        }
			.nav-links > div > div {
				float: none;
				width: 100%;
			}
}

/* MOBILE */
@media only screen and (max-width: 600px) {
	[class*="col-"] {
		float: none;
		width: 100%;
		max-width: 100%;
	}
	.mobile {
		display: block;
	}
	.pc {
		display: none;
	}
}