body {
	padding-top: 2rem;
}

@media screen and (min-width: 768px) {
	body {
		padding-top: 4rem;
	}
}
.relative-position {
	position: relative;
}

.navbar-logo {
	width: 30%;
	min-width: 100px;
	height: auto;
}

.nav-item-text {
	color: #ffcc00 !important;
	font-size: 1.2rem;
	text-align: center;
}

.nav-icon {
	font-size: 2rem;
	margin-right: 10px;
	color: #f7ab9f;
}

.planner-btn {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	padding: 10px;
}

.planner-btn:focus {
	box-shadow: 0 0 0 0px;
}

.footer-link {
	list-style-type: none;
}

.foot-link-btn:focus {
	box-shadow: 0 0 0 0px;
}

body.calendar-view {
	/*
    background: linear-gradient(#fff, #efefef);
    background: url('../images/main_background.jpg');
    */
	background-color: #f1b3b3;
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	top: 0;
}

.calendar-body {
	padding: 4rem;
}

.calendar-side-panel {
	width: 12.5%;
	float: left;
	background-color: transparent;
	display: flex;
	flex-direction: column;
    align-items: stretch;
}

.month-side-box {
	display: flex;
	flex-flow: column;
	height: 100%;
	border-radius: 0px 0px 0px 10px;
    overflow: auto;
}

#calendar {
	height: 100%;
	padding: 0px;
	position: relative;
	width: 87.5%;
	float: left;
	display: flex;
	flex-flow: column;
}

.week-calendar {
    height: 100%;
    padding: 0px;
    position: relative;
    width: 87.5%;
    float: left;
    display: flex;
    flex-flow: column;
    background-color: white;
    border-radius: 10px;
}

#week-calendar {
	height: 400px;
	padding: 0px;
	position: relative;
	width: 100%;
	float: left;
	display: flex;
	flex-flow: column;
}

@media (max-width: 1499px) {
	.calendar-side-panel {
		width: 25%;
	}
	#calendar {
		width: 75%;
	}
}

@media (min-width: 1500px) {
	.calendar-side-panel {
		width: 12.5%;
	}
	#calendar {
		width: 87.5%;
	}
}

.calendar-content {
	display: flex;
	background: linear-gradient(#fff, #efefef);
	background: url("../images/calendar_background.png");
	height: calc(100vh - 12rem);
	border-radius: 20px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	top: 0;
	padding: 20px 3rem 20px 3rem;
}

.button.circle {
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 0;
	width: 3.5rem;
	height: 3.5rem;
	display: flex;
	align-items: baseline;
	justify-content: space-around;
	font-size: 3rem;
	padding-left: 0;
	padding-right: 0;
	color: dimgray;
}

@media (min-width: 1024px) {
	.decrement-button {
		left: -5rem;
		top: 50%;
		margin-top: -1.7rem;
	}
	.skin-wrapper {
		padding: 1rem 6.5rem;
	}
}

@media (min-width: 768px) {
	.decrement-button {
		display: block;
		left: 0.5rem;
		top: 35rem;
	}
	.skin-wrapper {
		padding: 1rem 5rem;
	}
}

.tui-full-calendar-layout {
	overflow: auto;
	border-radius: 0px 10px 10px 0px;
	padding-right: 0px;
	padding-left: 0px;
}

::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}

.move-view {
	padding: 10px;
	font-size: 0;
	border-radius: 25px;
	border: 2px solid rgb(250, 221, 60);
	color: pink;
	background-color: white;
}

.prev-button {
	position: absolute;
	top: 50%;
	left: -2.5rem;
	transform: translate(0%, -50%);
}

.next-button {
	position: absolute;
	top: 50%;
	right: -2.5rem;
	transform: translate(0%, -50%);
}

.month-view-switch {
	width: 100px;
	height: 40px;
	background-color: white;
	border: 2px solid pink;
	border-radius: 10px;
	transform: rotate(90deg);
	position: absolute;
	top: 60px;
	right: -60px;
	color: gold;
	font-size: 1.1rem;
	font-weight: 500;
	padding-top: 0px;
}

.week-view-switch {
	width: 100px;
	height: 40px;
	background-color: white;
	border: 2px solid pink;
	border-radius: 10px;
	transform: rotate(90deg);
	position: absolute;
	top: 165px;
	right: -60px;
	color: gold;
	font-size: 1.1rem;
	font-weight: 500;
	padding-top: 0px;
}

.day-view-switch {
	width: 100px;
	height: 40px;
	background-color: white;
	border: 2px solid pink;
	border-radius: 10px;
	transform: rotate(90deg);
	position: absolute;
	top: 275px;
	right: -60px;
	color: gold;
	font-size: 1.1rem;
	font-weight: 500;
	padding-top: 0px;
}

.month-view-switch:hover {
	color: pink;
}

.week-view-switch:hover {
	color: pink;
}

.day-view-switch:hover {
	color: pink;
}

.custom-divider {
	margin-top: 1.5px;
	margin-bottom: 1.5px;
	margin-left: 10px;
	margin-right: 10px;
}

.quote-text {
    padding: 10px;
    font-weight: 500;
    font-style: italic;
    height: 200px;
    overflow: auto;
}

.quote-name {
	text-align: center;
}

.milestone-title {
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	color: #ed6980;
}

ul.to-do-list {
	margin: 0;
	padding: 0;
}

/* Style the list items */
ul.to-do-list li {
    cursor: pointer;
    position: relative;
    padding: 4px 8px 4px 33px;
    list-style-type: none;
    background: #eee;
    font-size: 14px;
    transition: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Set all odd list items to a different color (zebra-stripes) */
ul.to-do-list li:nth-child(odd) {
	background: #f9f9f9;
}

/* Darker background-color on hover */
ul.to-do-list li:hover {
	background: #ddd;
}

/* When clicked on, add a background color and strike out text */
ul.to-do-list li.checked {
	background: #888;
	color: #fff;
	text-decoration: line-through;
}

/* Add a "checked" mark when clicked on */
ul.to-do-list li.checked::before {
    content: "";
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 6px;
    left: 14px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
}

/* Style the close button */
.to-do-list .close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 4px 16px 4px 16px;
}

.to-do-list .close:hover {
	background-color: #f44336;
	color: white;
}

/* Style the header */
.to-do-list-header {
    padding: 4px 4px;
    color: white;
    text-align: center;
}

/* Clear floats after the header */
.to-do-list-header:after {
	content: "";
	display: table;
	clear: both;
}

/* Style the input */
.to-do-list-input {
	margin: 0;
	border: none;
	border-radius: 0;
	width: 75%;
	padding: 2px;
	float: left;
	font-size: 16px;
}

/* Style the "Add" button */
.to-do-list-add-btn {
	padding: 2px;
	width: 25%;
	background: #d9d9d9;
	color: #555;
	float: left;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 0;
}

.to-do-list-add-btn:hover {
	background-color: #bbb;
}

.priority-container {
    width: calc(calc(100% / 7) - 0px);
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ff91a4;
    border-top: 1px solid #ff91a4;
    border-bottom: 1px solid #ff91a4;
}

.priority-container:first-child {
    border-left: 1px solid #ff91a4;
}

.priority-container:last-child {
    border-radius: 0px 0px 10px 0px;
}

.priority-title {
	text-align: center;
	font-size: 0.9rem;
	font-weight: 500;
	color: #ed6980;
}

.week-priority-container {
    display: flex;
    height: 100%;
    flex: 1;
    overflow: auto;
}

.to-do-list-body {
    overflow: auto;
    flex-flow: column;
    height: 55%;
}

.meal-body {
    flex: 1;
}

#day-schedule {
	height: 100%;
	padding: 0px;
	position: relative;
	width: 50%;
	float: left;
	display: flex;
	flex-flow: column;
}

#day-schedule .tui-full-calendar-layout {
    overflow: auto;
    border-radius: 10px 0px 0px 10px;
    padding-right: 0px;
    padding-left: 0px;
}

.day-detail {
    width: 50%; 
    position: relative; 
    background-color: white;
    border-radius: 0px 10px 10px 0px;
    display: flex;
    flex-direction: column;
}

.vitamin-button {
	background-image: url('../images/icons/vitamin.png'); 
	width: 40px; 
	height: 40px; 
	background-size: contain;     
	background-repeat: no-repeat;
	background-color: white;
    background-position: center;
	border: 2px solid pink;
}

.water-button {
    background-image: url('../images/icons/water.png');
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
    background-position: center;
	border: 2px solid pink;
}

.exercise-button {
	background-image: url('../images/icons/excercise.png'); 
	width: 40px; 
	height: 40px; 
	background-size: contain;     
	background-repeat: no-repeat;
	background-position: center;
	background-color: white;
    background-position: center;
	border: 2px solid pink;
}

.vitamin-button:focus {
	box-shadow: none;	
}

.water-button:focus {
	box-shadow: none;	
}

.exercise-button:focus {
	box-shadow: none;	
}

.water-button.active, .vitamin-button.active, .exercise-button.active {
	background-color: lightgrey;
}

.active-view-mode {
	background-color: #f7abb9;
    color: white;
}

.tui-full-calendar-section-title {
    width: calc(100% - 0px);
    padding-right: 4px;
}

.tui-full-calendar-dayname {
	cursor: pointer;
}