/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
 
 
/* The Modal (background) */
.modalStartPaddle {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background: rgba(48, 47, 60, 0.8) none repeat scroll 0% 0%;
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

/* Modal Content */
.modalStartPaddle-content {
  width: 340px; 
  margin: 100px auto;
  border-radius: 0.3rem;
  background-color: #fefefe;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
  font-family: Lato, "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif;
  line-height: 1.15;
  font-size: 10px;
}

/* The Close Button */
.closePaddleSpan {
  float: right;
  font-size: 14px;
}

.closePaddleSpan:hover,
.closePaddleSpan:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modalStartPaddle-header {
  padding: 10px 16px;
}

.modalStartPaddle-product {
  padding: 2px 16px;
  text-align: center;
  border-bottom: 1px solid rgb(210, 212, 222);
}

.modalStartPaddle-body {
  padding: 2px 16px;
}

.modalStartPaddle-body label{
  width: 100px;
}

.modalStartPaddle-footer {
  padding: 2px 16px;
  font-size: 10px;
}

.continuePaddle {
  background-color: rgb(6, 198, 104);
  background-position: center center !important;
  border-color: rgb(6, 198, 104);
  border-style: solid;
  border-radius: 4px;
  border-width: 1px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: none;
  line-height: 2rem;
  height: 3rem;
  margin-bottom: 10px;
  min-height: auto;
  padding: 0px;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
  font-family: Lato, Helvetica, "Trebuchet MS", "Adobe Heiti Std", "Segoe UI", sans-serif;
  width: 100%;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}
