/* Header - General */

.navbar-wrapper {
	.navbar-wrapper__inner {
		
		/* Night/day switch in header */
		> .switch {
			&.switchnight {
				margin-top: 20px;
				
				img {
					display: block;
					width: 20px;
					height: 20px;
					
					&.night {
						filter: invert(1) brightness(300%);
					}
				}
				
				[type="checkbox"] {
					visibility: hidden;
				}
			}
		}
		
		.navbar-wrapper__inner--nav {
			.switch {
				display: none;
			}
		}
		
		.navbar-wrapper__inner--hamburger {
			.hamburger {
				width: 22px;
						
				.line {
					width: 22px;
					height: 1.5px;
					
					&:nth-child(2) {
						top: 7px;
					}
					
					&:nth-child(3) {
						width: 16px;
						margin-left: 0;
						top: 14px;
						left: auto;
						right: 0;
					}
				}
			}
			
			&.active {
				.line {
					&:nth-child(1) {
						top: 10px;
					}
					&:nth-child(3) {
						width: 22px;
						top: 10px;
					}
				}
			}
		}
		
		.navbar-wrapper__inner--contact {
			top: 29px;
			left: 65px !important;
		}
	}
}