[class*="col-"] {
  float: left;
  padding: 15px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.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%;}

.col-6 {
	margin: 0 25% 0 25%;
}

input[type=text] {
	width: 94%;
	padding: 15px;
	margin: 10px 10px 10px 10px;
	border: none;
	background: #f1f1f1;
	border-radius: 5px;
	resize: none;
	transition: 0.5s;
	font-family: Istok Web;
	font-size: 20px;
}

input[type=number] {
	width: 94%;
	padding: 15px;
	margin: 10px 10px 10px 10px;
	border: none;
	background: #f1f1f1;
	border-radius: 5px;
	resize: none;
	transition: 0.5s;
	font-family: Istok Web;
	font-size: 20px;
	text-align: center;
}

textarea {
	height: 350px;
	width: 94%;
	padding: 15px;
	margin: 10px 10px 10px 10px;
	border: none;
	background: #f1f1f1;
	border-radius: 5px;
	resize: none;
	transition: 0.5s;
	font-family: Istok Web;
	font-size: 20px;
}

select {
	width: 98%;
	padding: 15px;
	margin: 10px 10px 10px 10px;
	border: none;
	background: #f1f1f1;
	border-radius: 5px;
	resize: none;
	transition: 0.5s;
	font-family: Istok Web;
	font-size: 20px;
}

input[type=password] {
	width: 94%;
	padding: 15px;
	margin: 10px 10px 10px 10px;
	border: none;
	background: #f1f1f1;
	border-radius: 5px;
	resize: none;
	transition: 0.5s;
	font-family: Istok Web;
	font-size: 20px;
}

input[type=url] {
	width: 94%;
	padding: 15px;
	margin: 10px 10px 10px 10px;
	border: none;
	background: #f1f1f1;
	border-radius: 5px;
	resize: none;
	transition: 0.5s;
	font-family: Istok Web;
	font-size: 20px;
}

input[type=email] {
	width: 94%;
	padding: 15px;
	margin: 10px 10px 10px 10px;
	border: none;
	background: #f1f1f1;
	border-radius: 5px;
	resize: none;
	transition: 0.5s;
	font-family: Istok Web;
	font-size: 20px;
}

input[type=text]:focus {
	outline: none;
	background: #ddd;
}

input[type=number]:focus {
	outline: none;
	background: #ddd;
}

textarea:focus {
	outline: none;
	background: #ddd;
}

select:focus {
	outline: none;
	background: #ddd;
}

select:hover {
	background: #ddd;
	cursor: pointer;
}

input[type=password]:focus {
	outline: none;
	background: #ddd;
}

input[type=url]:focus {
	outline: none;
	background: #ddd;
}

input[type=email]:focus {
	outline: none;
	background: #ddd;
}

.btn {
	font-size: 20px;
	cursor: pointer;
	background-color: #33b5e5;
	color: black;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	transition: 0.5s;
	text-decoration: none;
}

.btn:hover {
	background-color: #0099cc;
	transition: 0.5s;
}

.btn:focus {
	outline: none;
}

.btn-delete {
	font-size: 20px;
	cursor: pointer;
	background-color: #ff5050;
	color: black;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	transition: 0.5s;
	text-decoration: none;
}

.btn-delete:hover {
	background-color: #ff0000;
	transition: 0.5s;
}

.btn-delete:focus {
	outline: none;
}

.alert {
	padding: 20px;
	background-color: #3cb371;
	color: black;
	border-radius: 5px;
}

.alert-deleted {
	padding: 20px;
	background-color: #f44336;
	color: black;
	border-radius: 5px;
}

.closebtn {
	margin-left: 15px;
	color: balck;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.5s;
}

.closebtn:hover {
	color: white;
}

.row {margin: 0 -5px;}

.row:after {
	content: "";
	display: table;
	clear: both;
}

  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
	margin-top: 50px;
  }

.card {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	padding: 16px;
	text-align: center;
	background-color: #f1f1f1;
	border-radius: 5px;
}

.header {
	background-color: #33b5e5;
	padding: 25px;
	border-radius: 5px;
}

.text {
	background-color: #f1f1f1;
	padding: 20px;
	margin-top: 20px;
	border-radius: 5px;
	text-align: left;
}

.link a {
	color: #33b5e5;
	text-decoration: none;
	transition: 0.5s;
}

.link a:hover {
	text-decoration: underline;
	color: #0099cc;
	transition: 0.5s;
}

#navbar {
	overflow: hidden;
}

#navbar {
	background-color: #33b5e5;
}

#navbar #navbarbutton .active a {
	background-color: #0099cc;
}

#navbar #navbarbutton .non_active a {
	background-color: #33b5e5;
}

#navbar #navbarbutton a {
	float: left;
	display: block;
	color: black;
	text-align: center;
	padding: 30px 30px;
	text-decoration: none;
	transition: 0.5s;
}

#navbar #navbarbutton a:hover {
	background-color: #0099cc;
	color: black;
	transition: 0.5s;
}

.content {
	margin-top: 30px;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

.sticky + .content {
	padding-top: 120px;
}

.top {
	background-color: #0099cc;
	color: black;
	padding: 15px;
	text-align: center;
}

.top-mobile {
	background-color: #0099cc;
	color: black;
	padding: 15px;
	text-align: center;
}

@media only screen and (min-width: 801px) {
    .top-mobile {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .top-no-mobile {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    .no-mobile {
        display: none;
    }
}

@media only screen and (min-width: 801px) {
    .mobile {
        display: none;
    }
}

.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.9);
	overflow-x: hidden;
	transition: 0.5s;
}

.overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: white;
	display: block;
	transition: 0.5s;
}		

.overlay a:hover, .overlay a:focus {
	color: #33b5e5;
	transition: 0.5s;
}

.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
}

@media screen and (max-height: 450px) {
	.overlay a {font-size: 20px}
	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
  }
}

.openbtn {
	font-size: 30px;
    cursor: pointer;
    background-color: #33b5e5;
    padding: 30px 30px;
    float: right;
	transition: 0.5s;
	color: black;
}

.openbtn:hover {
	background-color: #0099cc;
    transition: 0.5s;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.5s;
    font-size: 17px;
}

@media only screen and (max-width: 314px) {
    .tab button {
        width: 100%;
    }
}

.tab button:hover {
	background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0); 
	background-color: rgba(0,0,0,0.9);
}

.modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
}

.modal-content, #caption {  
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
	from {-webkit-transform:scale(0)} 
	to {-webkit-transform:scale(1)}
}

@keyframes zoom {
	from {transform:scale(0)} 
	to {transform:scale(1)}
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.5s;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

@media only screen and (max-width: 700px){
  .modal-content {
		width: 100%;
  }
}

#myImg {
	cursor: pointer;
	transition: 0.5s;
}

#myImg:hover {opacity: 0.7;}

::-webkit-scrollbar {
  	width: 10px;
}

::-webkit-scrollbar-track {
  	box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.5); 
	border-radius: 5px;
}
 
::-webkit-scrollbar-thumb {
  	background: #888;
  	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: #555; 
}

.container {
	display: block;
	position: absolute;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #f1f1f1;
	border-radius: 5px;
	transition: 0.5s;
}

.container:hover input ~ .checkmark {
	background-color: #ddd;
	transition: 0.5s;
}

.container input:checked ~ .checkmark {
	background-color: #33b5e5;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.container input:checked ~ .checkmark:after {
	display: block;
}

.container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.dark-mode {
	background-color: black;
	color: white;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #33b5e5;
}

input:focus + .slider {
  box-shadow: 0 0 1px #33b5e5;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.h1 {
	background: linear-gradient(to right, #0099cc, black);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	text-align: center;
}

fieldset, hr {
	border-radius: 5px;
	border: 2px solid #ddd;
}

.footer {
	background: #f1f1f1;
	border-radius: 50px 50px 0 0;
}