/* ------------------------------------------- */
/* Shop | Delivery/Pickup Schedule Styling */
/* ------------------------------------------- */
#delivery-schedule-container {
	margin-bottom: 40px;
}

#toggle-fullscreen-window {
	background: #000;
	border: none;
	border-radius: 0;
	color: #fff;
    cursor: pointer;
	display: inline-block;
	font-family: Lato;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
	padding: 8px 45px;
	position: absolute;
	right: 0;
	top: -60px;
	transition: 0.2s;
	width: auto;
}
#toggle-fullscreen-window:hover {
	opacity: 0.8;
	transition: 0.2s;
}
body.fullscreen-mode-content > .container, body.fullscreen-mode-content .page-title, body.fullscreen-mode-content footer {
	display: none !important;
}
#main-content.fullscreen-mode-content {
	background: #FFF !important;
	height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
	padding-top: 95px;
	position: absolute !important;
    width: 100vw;
}

.delivery-item {
	
}

.delivery-update-success-notice {
	color: #00b700;
    font-size: 1.3em;
    text-align: center;
}

.delivery-list-filters {
	position: relative;
	text-align: right;
}
.filter-option-container {
	display: inline-block;
}
.delivery-list-filters select {
	margin-right: 20px;
}
.delivery-list-filters input[type="submit"] {
	padding: 8px 35px !important;
	margin: 0;
	border: none !important;
}

@media (max-width: 1159px) {
	.filter-option-container {
		display: block;
	}
	.delivery-list-filters select {
		margin-right: 0;
		margin-bottom: 5px;
	}
}

.accordion-row-header {
    width: 100%;
    border: 1px solid #cbcbcb;
    position: relative;
    display: inline-block;
}
.ui-accordion-header-icon {
    left: 10px !important;
    margin-top: 18px !important;
}
.order-id-col {
    border-right: 1px solid #cbcbcb;
	cursor: pointer;
    width: 71%;
    float: left;
    padding: 12px 12px 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
}
.order-id-col .order-quick-view-details {
	font-weight: 300;
    font-size: 0.88em;
    padding-left: 10px;
}
.order-action-col {
    border-left: 1px solid #cbcbcb;
    width: 29%;
    float: left;
    margin: auto;
    margin-left: -1px;
	padding: 5px 0;
    text-align: center;
	font-size: 1.3em;
	font-weight: bold;
	color: #00b700;
	position: relative;
}
.order-action-col label {
	cursor: pointer;
    width: 100%;
    display: inline-block;
    height: 100%;
    padding: 7px;
}

@media (max-width: 548px) {
	.order-id-col {
	    width: 65%;
	}
	.order-id-col .order-quick-view-details {
		padding-left: 0;
		display: block;
	}
	.order-action-col {
	    width: 35%;
		font-size: 1.1em;
	}
}
@media (max-width: 440px) {
	.order-id-col {
		border: none;
	    width: 100%;
		border-bottom: 1px solid #cbcbcb;
	}
	.order-id-col .order-quick-view-details {
		padding-left: 0;
		display: block;
	}
	.order-action-col {
		border: none;
		height: auto;
		line-height: 2em;
	    width: 100%;
	}
}

.accordion-row-body {
	width: 100%;
    border: 1px solid #cbcbcb;
	border-top: none !important;
    position: relative;
    display: inline-block;
	padding: 10px 20px;
	margin-top: -9px;
}
.delivery-detail-title {
	font-weight: bold;
}
.delivery-extended-details {
    margin: 10px 0 10px 5px;
    display: inline-block;
    padding-left: 10px;
    border-left: 1px solid #cbcbcb;
}
.delivery-items-list li {
    line-height: 1em;
    font-size: 0.98em;
}

@media screen and (max-width: 768px) {
	#main-content ol, #main-content ul {
		padding-left: 20px;
	}
}

.accordion-row-body.ui-accordion-content-active {
	margin-bottom: 10px;
}

.delivery-result-count {
	position: absolute;
    top: 0;
    left: 0;
	font-style: italic;
}

.mark-delivered-form {
	position: relative;
    padding-top: 30px;
}
.mark-delivered-form-submit input {
	margin-top: 10px;
    width: 100%;
    background: #00b700 !important;
    font-size: 1.2em !important;
}
.mark-delivered-form-submit input[disabled="disabled"] {
	cursor: not-allowed;
	opacity: 0.4;
}

.mark-delivered-unattended {
	color: #ff9400;
	display: block;
}
.mark-delivered-unattended.disabled {
	display: none;
}