@import url(https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500|Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);    

/* GENERAL STYLING */
body.tascuro-body {
    background-color: #f8f8f8;
    font-family: "Open Sans";
    font-size: 13px;
}
h4.header {
    font-weight: 200;
    text-transform: uppercase;
    border-bottom: 1px solid #868686;
    padding: 0px 10px 10px 10px;
    width: 75%;
}
.modal-dialog {
    margin-top: 50px;
}
span.field-errorMsg {
    font-size:12px;
    color:red;
    display:none;
}

.tascuro-btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: .25rem;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor:pointer;
    background: #e3e3e3;
    color: #616161;
}
.tascuro-btn:hover {
    background: #cacaca;
    color: #222222;
}
.tascuro-btn:active, .tascuro-btn:focus {
    outline: none;
}
.btn-secondary {
        font-family: inherit;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    opacity:0;
    display:none;
}
#overlay-container.overlay-shown .overlay {
    opacity:1;
    display:block;
    -webkit-animation: fade-in-with-translate .5s ease-out .6s both;
    animation: fade-in-with-translate .5s ease-out .6s both;
}

#overlay-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 300px;
    max-width: 100%;
    max-height: 100%;
    background: #eeeeee;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 1px solid #757575;
    box-shadow: 4px 4px 4px #676767;
    opacity:0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:grey;
    text-align:center;
    padding:20px;
    display:none;
}

#overlay-container.overlay-shown #overlay-dialog {
    display: flex;
    animation-name: bounceIn;
    animation-duration: 450ms;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-delay:1s;
}


#overlay-dialog-close {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 32px;
    height: 32px;
    background: whitesmoke;
    border-radius: 50%;
    box-shadow: -2px 2px 1px 0px #a4a4a4;
    cursor:pointer;
}
#overlay-dialog-close:before, #overlay-dialog-close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 22px;
    width: 2px;
    background-color: #333;
    opacity: 0.5;
    top: 6px;
}
#overlay-dialog-close:before {
  transform: rotate(45deg);
}
#overlay-dialog-close:after {
   transform: rotate(-45deg);
}
#overlay-dialog-close:hover #overlay-dialog-close:after, #overlay-dialog-close:hover #overlay-dialog-close:before {
    opacity:1;
}

.invoice-heading {
    border-color: #eff2f7;
    font-size: 20px;
    font-weight: 300;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
div#invoiceRows > div.row > div:first-of-type {
    font-weight: bold;
}

div#invoiceRows > div.row > div:first-of-type > div {
    font-weight: normal;
}

div#code_pre_payment, div#tascuro-payment-container{
    transition:transform 0.6s ease-in-out;
}

div#stripe-prb {
    margin: 5px 15px;
}
div#error-msg {
    text-transform: uppercase;
    margin: 0px 5px 20px;
    text-align: center;
}

#payment-form {
    -webkit-animation: fade-in-with-translate .5s ease-out .6s both;
    animation: fade-in-with-translate .5s ease-out .6s both;
}

#payment-form button.sub-payment {
    border: none;
    outline: none;
    color: #fff;
    background: #32325d;
    white-space: nowrap;
    display: inline-block;
    line-height: 40px;
    padding: 0 14px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-decoration: none;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
    margin-left: 12px;
    height: 40px;
    border-radius: 4px;
}
#payment-form button.sub-payment:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, .10), 0 3px 6px rgba(0, 0, 0, .08);
    background-color: #43458b;
}
#payment-form button.sub-payment.disabled:hover {
    transform: translateY(0px);
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    background-color: #32325d;
}


.form-control.required.invalid {
    border:1px solid #d88787;
    
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #04040400 inset;
    color:#6b6b6b;
}
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #04040400 inset;
}



div.sandbox {
    text-align: center;
    font-size: 20px;
    font-weight: 100;
    text-transform: uppercase;
    border-bottom: 1px solid #d4d4d4;
    padding: 5px 0px 10px 0px;
    color: #b3b3b3; 
    user-select:none;
    cursor:default;
    background: #efefef;
    font-family: "Open Sans";
    letter-spacing: initial;
}
div.sandbox > div {
    font-size: 14px;
    text-transform: none;
}



ul.amount-common {
    list-style: none;
    padding: 0;
}
ul.amount-common > li {
    display: inline-block;
    padding: 5px 5px 6px 5px;
    background: #f3f3f3;
    border-radius: 5px;
    min-width: 100px;
    margin: 0px 5px 10px 0px;
    text-align: center;
    border: 1px solid #c5c5c5;
    user-select: none;
    cursor: pointer;
}
ul.amount-common > li:hover {
    border: 1px solid grey;
    background: #e8e8e8;
}
ul.amount-common > li.active {
    background: #dddddd;
    border: 1px solid #8d8d8d;
}




ul#products {
    padding:0px;
    margin:0px;
}
.product {
    padding: 20px 0;
    width: 100%;
    vertical-align: top;
    cursor: default;
    border: 1px solid transparent;
    user-select: none;
    list-style: none;
    border-bottom: 1px solid #dbdbdb;
}
.product:first-of-type {
    padding-top: 0px;
}
.product:not(:first-of-type) {
    border-top: 1px solid grey;
}
.product > div {
    height: 100%;
}
.productName {
    text-transform: uppercase;
    font-weight: 100;
    font-size: 20px;
}
.productDescription {
    font-size: 14px;
    text-align: justify;
    display:none;
}
.productDescription.Short{ 
    display:block;
}
span.priceAmount {
    font-size: 30px;
}
span.priceFrequency {
    vertical-align: super;
}

.addons-list {
    list-style:none;
    padding:0;
}
.addons-list > li > div.input-group input.form-control, .addons-list > li span.input-group-addon.small-width {
    width:100px;
    text-align: center;
   
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.addons-list > li span.input-group-addon.small-width > input {
    margin: 0px 31px;
}
.addons-list > li span.input-group-addon.full-width {
    width:100%;
}



.atb {
    margin-top:20px;
    text-align:center;
    perspective:1000px;
    position:relative;
    height:38px;
}
.atb > button {
    position:absolute;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    left: 0;
    right: 0;
    backface-visibility:hidden;
}
.atb > div {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    left: 0;
    right: 0;
    transform: rotateY(-180deg);
    backface-visibility: hidden;
}
.atb.flip > button {
    transform:rotateY(-180deg);
}
.atb.flip > div {
    transform:rotateY(0deg);
}



.stripe-prb, .stripe-pbap, .stripe-main, .stripe-ap {
    text-align: center;
}
.stripe-pbap {
    display:none;
}




button.btn.btn-apple-pay {
    padding: 0.2rem 2rem;
    background: black;
    color: white;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 18px;
    transition: background 0.3s ease-in-out;
}
button.btn.btn-apple-pay:hover {
    background: #3d3d3d;
}
button.btn.btn-apple-pay > span {
    vertical-align: top;
    line-height: 36px;
    margin-right: 5px;
    font-size: 15px;
}



div.ellip {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
#couponContainer {
    text-align: center;
    border: 1px solid rgb(226, 226, 226);
    padding: 10px 25px;
    background: rgb(241, 241, 241);
    border-radius: 10px;
    margin: 10px 0px;
}



.tascuro-payment-tabs {
    display: none;
}
li.tascuro-active .tascuro-payment-tabs {
    display: block;
    position: relative;
    overflow: hidden;
}
ul.tascuro-tabs {
    list-style: none;
    padding-left: 0px;
}
ul.tascuro-tabs li.tascuro-tab > div {
     padding:20px;
     
}
ul.tascuro-tabs li.tascuro-tab > div.header {
    font-weight: bold;
    padding: 10px;
    border-width: 0px 0px 1px 0px;
    border-style: solid;
    border-color: #bcbcbc;
    background: linear-gradient(#f8f8f8, #dddddd);
    cursor:pointer;
    user-select: none;
    color:grey;
}
.invoice-container {
    /*margin: 0px 250px;*/
    background: white;
    padding: 5px 40px;
    border-radius: 10px;
    margin-bottom: 50px;
}
.amount-box .invoice-container {
    padding:0px 20px;
}
.error-container {
    margin: 0px 250px;
    background: white;
    padding: 20px 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align:center;
    font-size:20px;
}
#tascuro-embed-form > .error-container {
    margin:10px 10px;
}





@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}
@-webkit-keyframes fade-in-with-translate {
    0% { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px) }
    30% { -webkit-transform: translateY(0); transform: translateY(0) }
    100% { opacity: 1 }
}
@keyframes fade-in-with-translate {
    0% { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px) }
    30% { -webkit-transform: translateY(0); transform: translateY(0) }
    100% { opacity: 1 }
}
@-webkit-keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1 }
}
@keyframes fade-in {
    0% { opacity: 0; } 
    100% { opacity: 1 }
}

@keyframes bounceIn{
  0%{ opacity: 0; transform: scale(0.3) translate(-50%, -50%); }
  50%{ opacity: 0.9; transform: scale(1.1) translate(-50%, -50%); }
  80%{ opacity: 1; transform: scale(0.89) translate(-50%, -50%); }
  100%{ opacity: 1;transform: scale(1) translate(-50%, -50%); }
}




/** SHARED DATA-FORM STYLING **/
form#tascuro-form .element {
    margin-bottom:20px;
}



/** SHARED PAYFORM STYLING **/
.tascuroPayForm .row {
  display: -ms-flexbox;
  display: flex;
  margin: 0 5px 10px;
}

.tascuroPayForm .field {
  position: relative;
  width: 100%;
  height: 40px;
}

.tascuroPayForm .field.half-width:first-of-type {
    margin-bottom: 10px;
}

.tascuroPayForm .baseline {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #cfd7df;
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tascuroPayForm label {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 8px;
  color: #cfd7df;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform-origin: 0 50%;
  cursor: text;
  transition-property: color, transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom:0px;
  user-select:none;
  text-align:left;
  font-size: 15px;
}

.tascuroPayForm .input {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 0 0 5px 5px;
  color: #32325d;
  background-color: transparent;
  font-family: inherit;
}

.tascuroPayForm .input::-webkit-input-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tascuroPayForm .input::-moz-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tascuroPayForm .input:-ms-input-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tascuroPayForm .input.StripeElement {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity;
}

.tascuroPayForm .input.focused,
.tascuroPayForm .input:not(.empty) {
  opacity: 1;
}

.tascuroPayForm .input.focused::-webkit-input-placeholder,
.tascuroPayForm .input:not(.empty)::-webkit-input-placeholder {
  color: #cfd7df;
}

.tascuroPayForm .input.focused::-moz-placeholder,
.tascuroPayForm .input:not(.empty)::-moz-placeholder {
  color: #cfd7df;
}

.tascuroPayForm .input.focused:-ms-input-placeholder,
.tascuroPayForm .input:not(.empty):-ms-input-placeholder {
  color: #cfd7df;
}

.tascuroPayForm .input.focused + label,
.tascuroPayForm .input:not(.empty) + label {
  color: #aab7c4;
  transform: scale(0.85) translateY(-18px);
  cursor: default;
}

.tascuroPayForm .input.focused + label {
  color: #24b47e;
}

.tascuroPayForm .input.invalid + label {
  color: #db382f;
}

.tascuroPayForm .input.focused + label + .baseline {
  background-color: #24b47e;
}

.tascuroPayForm .input.focused.invalid + label + .baseline {
  background-color: #e25950;
}

.tascuroPayForm input, .tascuroPayForm button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-style: none;
}

.tascuroPayForm input:-webkit-autofill {

  -webkit-text-fill-color: #32325d;
  transition: background-color 100000000s;
  -webkit-animation: 1ms void-animation-out;
}

.tascuroPayForm .StripeElement--webkit-autofill {
    background: transparent !important;
}

.tascuroPayForm input, .tascuroPayForm button {
  -webkit-animation: 1ms void-animation-out;
}

.tascuroPayForm button {
  display: block;
  width: calc(100% - 30px);
  height: 40px;
  margin: 0px 15px 0px;
  background-color: #24b47e;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.tascuroPayForm input:active {
    background-color: transparent;
}

.tascuroPayForm .error svg {
  margin-top: 0 !important;
}

.tascuroPayForm .error svg .base {
  fill: #e25950;
}

.tascuroPayForm .error svg .glyph {
  fill: #fff;
}

.tascuroPayForm .error .message {
  color: #e25950;
}

.tascuroPayForm .success .icon .border {
  stroke: #abe9d2;
}

.tascuroPayForm .success .icon .checkmark {
  stroke: #24b47e;
}

.tascuroPayForm .success .title {
  color: #32325d;
  font-size: 16px !important;
}

.tascuroPayForm .success .message {
  color: #8898aa;
  font-size: 13px !important;
}

.tascuroPayForm .success .reset path {
  fill: #24b47e;
}



.applePayBtn {
    width:185px;
    height:40px;
    background:black;
    color:white;   
    margin-bottom:20px;
    cursor:pointer;     
}




/** Tascuro.me specific styling */
.entity-box.transition {
    transition: all .4s ease-out .2s;
}
.entity-box {
    box-sizing: border-box;
    width: 100%;
    position: relative;
    max-height: 300px;
    overflow: hidden;
    background: linear-gradient(180deg,#71c191 0,#a3f3c3 100%);
    background: -o-linear-gradient(-90deg,#71c191 0,#a3f3c3 100%);
    text-shadow: 0 0 2px rgba(0,0,0,.4);
    padding-top: 25px;
    padding-bottom: 25px;
}

.payment-box {
    background-color: #fff;
    background-clip: content-box;
    -ms-transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -webkit-backface-visibility: hidden;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.amount-box {
    position: relative;
    min-height: 175px;
    box-sizing: border-box;
    background-color: #fff;
    color: #2c2e2f;
    overflow: visible;
    margin: 20px auto;
    padding:0px 10px;
    transition: all .4s ease-out .2s;
    -webkit-animation: fade-in-with-translate .5s ease-out .6s both;
    animation: fade-in-with-translate .5s ease-out .6s both;
}
.entity-header {
    position: relative;
    padding-top: 0;
    z-index: 3;
    transition: all .4s ease-out;
    -webkit-animation: fade-in .75s ease-out .2s both;
    animation: fade-in .75s ease-in .2s both;
}
.entity-image {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    transition: all .25s ease-out;
}
.entity-header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: contain;
    background-position: center center;
    background-color: rgb(255,255,255);
    box-shadow: 0 5px 12px 0 rgba(2,2,2,.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .5s ease-out;
}
.entity-header-details {
    max-width: 286px;
    text-align: center;
    margin: 0 auto;
}
.entity-header-details > div {
    padding-top: 15px;
    max-height: 100px;
    opacity: 1;
    color: #fff;
    transition: all .25s ease-out;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    line-height: 18px;
}
.entity-header-details > div.entity-header-large {
    font-size: 35px;
    line-height: 35px
}
.background {
    border:1px solid #92cda2;
}
.amount-box > div.text {
    font-weight: 500;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat";
}
.amount-container {
    color: #6c7378;
    margin: 0 auto;
    position: relative;
    text-align: center;
    font-size: 60px;
    padding-top: 15px;
}
.amount-currency {
    display: inline-block;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: .4em;
    line-height: 1.3em;
    vertical-align: top;
    padding-right: 4px;
}
.amount-number {
    display: inline-block;
    color: #6c7378;
    font-weight: 100;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1em;
    line-height: initial;
    outline: 0;
    border: 0;
    padding: 0;
    vertical-align: top;
    text-align: center;
    width: 0;
    background-color: transparent;
    margin-top: -.25em;
}
.form-mimic {
    font-weight: 100;
    font-size: 60px;
    visibility:hidden;
}
.secured {
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    background-color: #565656;
    color: transparent;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
}





/** MEDIA QUERIES **/
@media screen and (min-width: 768px){
    .payment-box {
        width: 480px;
        padding-bottom: 65px;
    }
    .entity-box {
        padding-top: 25px;
        padding-bottom: 25px;
    }        
}
@media screen and (max-width: 360px){
    .ProgressBar-stepLabel {
        display:none;
    }
}
@media screen and (max-width: 150px){
    .ProgressBar {
        display:none;
    }
}
    
@media print {
    .ProgressBar {
        display:none;
    }
    #pay-button {
        display:none;
    }
    .secured {
        display:none;
    }
} 
@media(max-width:1199px){
    .invoice-container {
        margin: 0px 160px;
    }
}
@media(max-width:991px){
    .invoice-container {
        margin: 0px 40px;
    }
}
@media(max-width:575px){
    .invoice-container {
        margin: 0px;
    }
    .right {
        text-align:center;
        margin-bottom:20px;
    }
}

.breadcrumb { 
  list-style: none; 
  overflow: hidden; 
  margin: 10px;
  padding: 0;
}
.breadcrumb li { 
  float: left; 
}
.breadcrumb li a {
  color: white;
  text-decoration: none; 
  padding: 10px 0 10px 25px;
  background: #b5b5b5; 
  position: relative; 
  display: block;
  float: left;
}
.breadcrumb li a:after { 
  content: " "; 
  display: block; 
  width: 0; 
  height: 0;
  border-top: 20px solid transparent;           /* Go big on the size, and let overflow hide */
  border-bottom: 20px solid transparent;
  border-left: 20px solid #b5b5b5;
  position: absolute;
  top: 50%;
  margin-top: -20px; 
  left: 100%;
  z-index: 2; 
}   
.breadcrumb li a:before { 
  content: " "; 
  display: block; 
  width: 0; 
  height: 0;
  border-top: 20px solid transparent;           /* Go big on the size, and let overflow hide */
  border-bottom: 20px solid transparent;
  border-left: 20px solid white;
  position: absolute;
  top: 50%;
  margin-top: -20px; 
  margin-left: 0px;
  left: 100%;
  z-index: 1; 
}   
.breadcrumb li:first-child a {
  padding-left: 10px;
}

.breadcrumb li:last-child a {
  background: transparent !important;
  color: black;
  pointer-events: none;
  cursor: default;
}
.breadcrumb li:last-child a:after, .breadcrumb li:last-child a:before { border: 0; }
.breadcrumb li a:hover { background: #74c494; }
.breadcrumb li a:hover:after { border-left-color: #74c494 !important; }