﻿header {
	display: flex;
	padding: 10px 60px;
	background-color: #201d1d;
	align-items: center;
}

	header #websiteName {
		font-size: 23px;
		cursor: pointer;
		font-weight: bold;
	}

	header #header-title {
		font-size: 23px;
		font-weight: bold;
		margin-left: auto;
		margin-right: auto;
		cursor: default;
	}

	header #cart-container {
		display: flex;
		align-items: center;
		width: 132px;
	}

		header #cart-container #cart-button {
			border: 0;
			width: 52px;
			fill: white;
			cursor: pointer;
			background-color: transparent;
			margin-left: auto;
		}

		header #cart-container #booking-timer {
			margin-right: 13px;
			font-size: 25px;
			font-weight: bold;
		}

		header #cart-container #cart-button #cart-counter-container {
			position: relative;
		}

			header #cart-container #cart-button #cart-counter-container #cart-counter {
				position: absolute;
				background-color: white;
				border-radius: 10px;
				padding: 0 6px;
				font-size: 12px;
				left: 28px;
				top: -5px;
				border: 1px solid #282828;
				font-weight: bold;
			}
