.omakava-empty-schedule, .omakava-empty-profile {
	text-align: center;
}

.omakava-empty-schedule {
	margin: 50px 0;
	font-size: 1.3em;
	font-weight: bold;
}

.omakava-empty-profile > a {
	color: #F39133;
}

.omakava-empty-profile > a:hover {
	color: black;
	cursor: pointer;
	-webkit-transition: color 0.1s cubic-bezier(.25,.8,.25,1);
	transition: color 0.1s cubic-bezier(.25,.8,.25,1);
}



/* P R O F I L E */

.profile {
	width: 50px;
	height: 50px;
	float: right;
	position: relative;
}

.profile-icon {
	width: 36px;
	height: 36px;
	background-image: url('/img/account_profile_36.svg');
	background-size: 36px;
	float: right;
	background-color: transparent;
	background-position: top center;
	background-repeat: no-repeat;
	margin-top: 8px;
	box-shadow: none;
}

.omakava-changes-profile-icon {
	position: absolute;
	top: 10px;
	right: -6px;
}

.omakava-changes-profile-icon .button {
	width: 20px;
	min-width: 20px;
	height: 20px;
	line-height: 20px;
	padding: 0;
}

.profile-transparent-container {
	position: absolute;
	top: -90px;
	right: -105px;
	z-index: 13;
	padding: 99px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

@media(min-width: 541px) {
	.profile:hover .profile-transparent-container {
		display: inline-block;
		visibility: visible;;
		opacity: 1;
		pointer-events: all;
	}
}

.profile-transparent-container-active {
	display: inline-block;
	visibility: visible;;
	opacity: 1;
	pointer-events: all;
}

.profile-container {
	width: calc(100% - 20px);
	min-height: 135px;
	min-width: 400px;
	height: 100%;
	display: inline-block;
	padding: 10px;
	position: relative;
	overflow: hidden;
}

.profile-container-logged-in {
	padding-bottom: 50px;
}

.profile-name {
	width: calc(100% - 74px);
	height: 64px;
	padding-right: 74px;
	margin-bottom: 15px;
}

.profile-name * {
	font-weight: normal !important;
	font-family: OpenSans-Light;
	/*line-height: 64px;*/
	white-space: nowrap;
}

.profile-icon-large {
	width: 64px;
	height: 64px;
	background-image: url('/img/account_profile_48.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 64px;
	position: absolute;
	top: 10px;
	right: 10px;
	border-radius: 100% !important;
	display: none;
}

.profile-buttons {
	width: calc(100% - 14px);
	display: inline-block;
	float: left;
	position: absolute;
	bottom: 0;
	left: 7px;
}

.profile-buttons .omakava-background, .profile-buttons .omakava-background a {
	cursor: pointer;
	display: inline-block;
}

.profile-buttons .button {
	display: inline-block;
	padding: 0 10px;
	line-height: 36px;
	margin: 7px 7px 7px 0;
	color: white;
}

.profile-buttons a {
	text-decoration: none;
}

.profile-logout {
	float: right;
	margin-right: 0px !important;
}

.myschedule-page {
	display: inline-block;
	width: 100%;
}

.omakava-container {
	width: 100%;
	height: 100%;
	float: left;
	display: inline-block;
}

.user-container-alerter {
	float: left;
	display: inline-block;
	max-width: calc(100% - 150px);
	line-height: normal;
	margin-top: 10px;
}

.login-and-registration-container {
	height: 100%;
	width: 310px;
	margin-left: 20px;
	float: left;
	display: inline-block;
}

.user-inputs-container {
	display: inline-block;
	float: left;
	width: 100%;
	overflow: hidden;
}

.user-registration-container, .user-login-container, .user-recovery-container {
	width: calc(100% - 42px);
	padding: 10px 20px 20px 20px;
	float: left;
	display: inline-block;
	border: 1px solid #F39133;
	border-radius: 3px;
	overflow: hidden;
}

.user-registration-container, .user-recovery-container {
	margin-top: 20px;
}

.user-combo-container {
	width: 400%;
	display: inline-block;
	padding: 0;
	border: 0;
	-webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	float: left;
	-webkit-transform: translate3d(-25%,0,0);
	transform: translate3d(-25%,0,0);
}

.user-combo-container > div {
	width: calc(25% - 4px);
	margin-top: 0;
	border: 0;
	float: left;
	box-shadow: none;
	border: 0;
	padding-left: 2px;
	padding-right: 2px;
}

.user-combo-selection {
	width: 100%;
	height: 36px;
	display: flex;
	line-height: 36px;
	/*border-bottom: 1px solid #F39133;*/
	flex: 0;
	border-radius: 4px;
	overflow: hidden;
}

.user-combo-selection > div {
	flex: 1;
	padding: 0 10px;
	white-space: nowrap;
	font-weight: bold;
	border-right: rgba(0,0,0,0.8);
	text-align: center;
	background-color: #333944;
	cursor: pointer;
	-webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	color: white;
	text-shadow: 1px 1px 5px black;
}

.user-combo-selection > div:last-of-type {
	border: 0
}

.user-combo-selection > div:hover {
	background-color: #eca45e;
}

.user-combo-selection-active {
	background-color: #F39133 !important;
	color: white !important;
}

.user-registration-header {
	width: 100%;
	float: left;
	display: inline-block;
	color: #F39133;
}

.user-registration-information-inputs {
	width: 100%;
	display: inline-block;
}

.user-inputs-buttons-container {
	display: inline-block;
	width: 100%;
	margin: 10px 0;
}

.registration-button {
	float: right;
	display: inline-block;
}


.omakava-description-container {
	height: 100%;
	width: calc(100% - 310px - 30px);
	float: left;
	display: inline-block;
	padding: 10px 10px 10px 0;
	text-align: justify;
}

.omakava-description-header {
	width: 100%;
	float: left;
	display: inline-block;
	color: #F39133;
}

.omakava-description {
	width: 100%;
	float: left;
	display: inline-block;
}

.profile-settings-container {
	width: 100%;
	height: 0px;
	float: left;
	display: inline-block;
	-webkit-transition: height 0.3s cubic-bezier(.25,.8,.25,1);
  transition: height 0.3s cubic-bezier(.25,.8,.25,1);
	overflow: hidden;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	margin-left: -10px;
	padding: 0 10px;
	width: 100%;
}

.profile-settings-container strong {
	padding: 0;
}

.profile-settings-container-active {
	height: 167px;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);

}

.recent-omakava-container {
	float: left;
	width: 100%;
}

.recent-omakava-container .schedule-container {
	display: none;
}

.nr-of-films-settings {
	float: left;
	display: inline-block;
	width: 100%;
}

.nr-of-films-to-show-1 .schedule-container:nth-child(1) {
	display: block;
}

.nr-of-films-to-show-2 .schedule-container:nth-child(1), .nr-of-films-to-show-2 .schedule-container:nth-child(2) {
	display: block;
}

.nr-of-films-to-show-3 .schedule-container:nth-child(1), .nr-of-films-to-show-3 .schedule-container:nth-child(2), .nr-of-films-to-show-3 .schedule-container:nth-child(3) {
	display: block;
}

.profile-settings-container > div {
	padding: 10px 10px;
	width: 100%;
	margin-left: -10px;
	min-height: 36px;
	line-height: 32px;
	float: left;
	background-color: rgba(0,0,0,0.05);
}

.profile-settings-container div {
	float: left;
}

.profile-settings-container > div:nth-of-type(even) {
	background-color: rgba(0,0,0,0.03);
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	min-height: 34px;
}

.profile-settings-container > div:first-of-type {
	border: 0;
}

.profile-settings-container span, .profile-settings-container .profile-settings-nr-of-next-films-container {
	float: left;
	height: 36px;
	line-height: 36px;
	font-weight: bold;
}

.profile-settings-nr-of-next-films-container {
	width: 80px;
	height: 32px !important;
	line-height: 30px !important;
	margin-left: 10px;
	background-color: #333944;
	border: 2px solid #F39133;
	border-radius: 4px;
	overflow: hidden;
	float: right !important;
}

.profile-settings-nr-of-next-films-container div {
	float: left;
	color: white;
	font-weight: bold;
}

.profile-settings-nr-of-next-films-container .next-films-button {
	width: 25px;
	font-weight: bold;
	height: 100%;
	text-align: center;
	cursor: pointer;
	color: #F39133;
}

.profile-settings-nr-of-next-films-container .profile-settings-nr-of-next-films {
	width: calc(100% - 50px);
	height: 100%;
	text-align: center;
	color: white;
	font-weight: bold;
}

.profile-close {
	display: none;
	position: absolute;
	top: 21px;
	right: 21px;
}

.omakava-change-password {
	float: right !important;
}

.omakava-all-dates {
	display: inline-block;
	float: left;
	max-width: none;
	min-height: 0;
	height: auto;
	margin: 0;
	font-size: inherit !important;
	border: 0;
}

.omakava-print, .omakava-buy-all {
	float: right;
	margin-left: 10px;
}

.screening-date:hover .omakava-icon {
	background-image: url('/img/profile_schedule_active.svg');
}

.screening-date-active .omakava-icon {
	background-image: url('/img/profile_schedule_active.svg');
}

.omakava-action-buttons {
	float: left;
	display: inline-block;
	width: 100%;
}

.schedule-all-date  {
	margin-top: 40px;
	display: inline-block;
	float: left;
	clear: both;
}

.schedule-all-date h1 {
	font-weight: bold;
}

.omakava-buy-popup-container {
	width: 100%;
	max-width: 900px;
	height: 100%;
	max-height: 80vh;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: none;
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	z-index: 11;
	overflow: hidden;
}

.omakava-buy-popup {
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	padding: 20px;
	overflow-y: auto;
	background-color: #f5f5f5;
}

.omakava-buy-popup .schedule-third-col *, .omakava-buy-popup .schedule-code.logged-in, .omakava-buy-popup .schedule-extra-buttons, .omakava-buy-popup .schedule-omakava-add, .omakava-buy-popup .schedule-omakava-remove, .omakava-buy-popup .schedule-code-next-to-time {
	display: none !important;
}

.omakava-google-button, .omakava-facebook-button {
	margin-right: 10px;
}

.omakava-facebook-button {
	padding: 0;
}

.g-signin2 {
	padding: 0 !important;
	width: 38px !important;
}

.g-signin2 * {
	margin: auto !important;
	color: inherit !important;
	box-shadow: none !important;
	transition: none !important;
	font-size: 0 !important;
	width: auto !important;
	display: block !important;
	float: none !important;
}

@media (max-width: 699px) {
	.omakava-container {
		text-align: center;
	}

	.omakava-description-container {
		width: 100%;
		padding-right: 0;
	}

	.login-and-registration-container {
		margin-left: 0;
		text-align: center;
		padding-bottom: 50px;
		float: none;
	}

	.profile-close {
		display: block;
	}

	.profile-icon-large {
		display: none !important;
	}

	.profile-container {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		border-radius: 0;
		overflow-y: auto;
		min-width: calc(100% - 20px);
	}

	.profile-buttons {
		position: relative;
		float: left;
		width: 100%;
		left: 0;
	}
}

/*@media (max-width: 534px) {*/

@media (max-width: 699px) {
	.profile-transparent-container {
		width: 100%;
	  padding: 0;
	  height: 100vh;
		position: fixed;
		top: 0;
		right: 0;
	}
}
@media (max-width: 552px) {
	.omakava-action-buttons {
		text-align: center;
		position: relative;
	}

	.omakava-action-buttons .button {
		float: none;
		margin-bottom: 10px;
		/*margin: 5px 0 5px 0;*/
	}
}

@media (max-width: 524px) {
	.omakava-action-buttons .button.omakava-all-dates {
		margin-left: 0;
	}
}

@media (max-width: 336px) {
	.omakava-action-buttons .button {
		margin-left: 0;
	}
}

@media (max-width: 500px) {
	.profile-name.user h3 {
		display: none;
	}
}

@media (max-width: 396px) {
	.profile-buttons {
		text-align: center;
	}

	.profile-buttons .button {
		float: none;
	}
}

/*@media (max-width: 390px) {
	.profile-buttons .omakava-background.button {
		margin-right: 0;
	}
}*/

@media (max-width: 390px) {
	.profile-buttons .button {
		margin-right: 0;
	}
}

@media (max-width: 380px) {
	.profile-settings-container-active {
    height: auto !important;
	}

	.user-combo-selection {
		height: auto;
		display: inline-block;
	}

	.user-combo-selection > div {
		width: calc(100% - 20px);
		flex: 0;
		float: left;
	}
}
