/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  border: outset 5px darkgrey;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}


/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.6);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation: remodal-overlay-opening-keyframes 0.3s;
  animation: remodal-overlay-opening-keyframes 0.3s;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation: remodal-overlay-closing-keyframes 0.3s;
  animation: remodal-overlay-closing-keyframes 0.3s;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	padding: 30px 10px 20px 10px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	color: #2b2e38;
	background: #fff;
	border: solid 1px #7c2529;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	background: #fff;
	border: 1px solid #003f14;
	font-family: Fontfabric Mont Book, Arial, Helvetica Neue, Helvetica, sans-serif;
	text-align: left;
}

.remodal_warning {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	padding: 30px 10px 20px 20px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	color: #2b2e38;
	background: #fff;
	border: solid 1px #7c2529;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	background: #fff url("/img/icons/alert.gif") no-repeat scroll 20px 20px;
	border: 1px solid #7c2529;
	font-family: Fontfabric Mont Book, Arial, Helvetica Neue, Helvetica, sans-serif;
	text-align: left;
}

#nutrition_panel .remodal
{
    background-image: none;
    padding: 20px;
}

#RDdelete,
#RDpause,
#RDresume,
#RDissue,
#RDskip {
	background: #fff url("/img/thinkproducts/icons/alert.gif") no-repeat scroll 20px 20px;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation: remodal-opening-keyframes 0.3s;
  animation: remodal-opening-keyframes 0.3s;
}

.remodal.remodal-is-closing {
  -webkit-animation: remodal-closing-keyframes 0.3s;
  animation: remodal-closing-keyframes 0.3s;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
	background-color: #8faf1d;
	border: medium none;
	border-radius: 17px;
	box-shadow: 2px 2px 5px #000;
	color: #fff;
	cursor: pointer;
	display: block;
	height: 34px;
	margin: 0;
	outline: 0 none;
	overflow: visible;
	padding: 0;
	position: absolute;
	right: -17px;
	text-decoration: none;
	top: -17px;
	transition: color 0.2s ease 0s;
	width: 35px;
	font-weight: 700;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #fff;
}

.remodal-close:before {
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm {
	display: inline-block;
	width: auto;
	height: 35px;
	margin: 0;
	/* padding: 10px 15px; */
	border: 0px;
	cursor: pointer;
	border: medium none;
	border-radius: 0;
	color: #FBF5EA;
	font-family: inherit;
	font-size: 14px;
	text-transform: uppercase;
	outline: medium none;
	background-color: #20915A;
	background-image: none;
	font-size: 10px;
	font-weight: normal;
}

.remodal-cancel {
	display: inline-flex;
	width: auto;
	margin-top: 5px;
	padding: 4px 15px;
	outline: medium none;
	border: 0 none;
	border-radius: 2px;
	background-image: none;
	background-color: #20915a;
	color: #fbf5ea;
	font-family: inherit;
	font-size: 12px;
	font-weight: normal;
	text-transform: uppercase;
    line-height: normal;
	cursor: pointer;
}

.remodal-cancel:hover {
	background-color: #71bc5a;
}

.remodal-confirm:hover:enabled,
.remodal-confirm:focus:enabled {
	display: inline-block;
	width: auto;
	height: 35px;
	margin: 0;
	/* padding: 10px 15px; */
	border: 0px;
	cursor: pointer;
	border: medium none;
	border-radius: 0;
	color: #FBF5EA;
	font-family: inherit;
	font-size: 14px;
	text-transform: uppercase;
	outline: medium none;
	background-color: #20915A;
	background-image: none;
	font-size: 10px;
	font-weight: normal;
}

.remodal-confirm:disabled {
	background:#ddd;
	color: #000;
	cursor: not-allowed;
}

/*.remodal-cancel {
  color: #fff;
  background: #e57373;
}
*/

.remodal-cancel:hover:enabled,
.remodal-cancel:focus:enabled {
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Inside New Popup
============================================================================= */
#recurringNewInput {

}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
	text-align: center;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
