/* MiniCart styles */
.mini-cart-modal {
  position: fixed;
  top: 0; right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 20px 0 rgba(236, 85, 152, 0.15);
  z-index: 9999;
  display: none;
  flex-direction: column;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.mini-cart-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mini-cart-title {
  color: #ea005f;
  font-weight: 700;
  margin-bottom: 1rem;
}
.mini-cart-close {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #ea005f;
  cursor: pointer;
  z-index: 10001;
}
.mini-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}
.mini-cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f3e6ee;
  padding-bottom: .8rem;
}
.mini-cart-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #f3e6ee;
  margin-right: 1rem;
}
.mini-cart-details {
  flex: 1;
}
.mini-cart-product-name {
  font-weight: 500;
  color: #ea005f;
  display: block;
}
.mini-cart-qty {
  color: #666;
  font-size: 0.9em;
  margin-right: 8px;
}
.mini-cart-price {
  color: #111;
  font-weight: 600;
  font-size: 1em;
}
.mini-cart-remove {
  color: #ea005f;
  font-size: 1.2em;
  margin-left: .8em;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}
.mini-cart-footer {
  border-top: 1px solid #f3e6ee;
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  text-align: right;
}
.mini-cart-total-label {
  color: #888;
  margin-right: 10px;
}
.mini-cart-total-value {
  color: #ea005f;
  font-weight: 700;
  font-size: 1.1em;
}
.mini-cart-empty {
  text-align: center;
  color: #888;
  padding: 2rem 0;
}
@media (max-width: 600px) {
  .mini-cart-modal {
    width: 100vw;
    max-width: 100vw;
  }
}
body.minicart-open {
  overflow: hidden;
}

a {
    display: inline-block;
    text-decoration: none;
}

input {
    outline: none !important;
}

h1 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 700;
}

section#formHolder {
    padding: 50px 0;
}

.brand {
    position: relative;
    padding: 20px;
    background-size: cover;
    background-color: #EA005F;
    background-position: center center;
    color: #fff;
    min-height: 540px;
    transition: all 0.6s cubic-bezier(1, -0.375, 0.285, 0.995);
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: stretch;
}
.brand.active {
    width: 100%;
}
.brand a.logo {
    margin-top: 15px;
    text-align: center;
    color: #f95959;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1em;
    flex: 1;
}
.brand a.logo img {
    max-width: 300px;
}
.brand .heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    transition: all 0.6s;
}
.brand .heading.active {
    top: 100px;
    left: 100px;
    transform: translate(0);
}
.brand .heading h2.login-title {
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}
.brand .heading p {
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: pre-wrap;
}
.brand .success-msg {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 60px;
}
.brand .success-msg p {
    font-size: 25px;
    font-weight: 400;
}
.brand .success-msg a {
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 30px;
    background: #f95959;
    text-decoration: none;
    color: #fff;
    border-radius: 30px;
}
.brand .success-msg p, .brand .success-msg a {
    transition: all 0.9s;
    transform: translateY(20px);
    opacity: 0;
}
.brand .success-msg p.active, .brand .success-msg a.active {
    transform: translateY(0);
    opacity: 1;
}

.form {
    position: relative;
}
.form .form-peice {
    background: #fff;
    min-height: 480px;
    margin-top: 30px;
    color: #333;
    padding: 30px 0 60px;
    transition: all 0.9s cubic-bezier(1, -0.375, 0.285, 0.995);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
}
.form .form-peice.switched {
    transform: translateX(-100%);
    width: 100%;
    left: 0;
}
.form form {
    padding: 0 40px;
    margin: 0;
    flex: 1;
}
.form form .form-group {
    margin-bottom: 5px;
    position: relative;
}
.form form .form-group.hasError input {
    border-color: #f95959 !important;
}
.form form .form-group.hasError label {
    color: #f95959 !important;
}
.form form label {
    font-size: 16px;
    font-weight: 400;
    transform: translateY(40px);
    transition: all 0.4s;
    cursor: text;
    color:#111;
    z-index: -1;
}
.form form label.active {
    transform: translateY(10px);
    font-size: 16px;
    color:#EA005F;
    font-weight: 600;
}
.form form label.fontSwitch {
    font-weight: 600;
}
.form form label.show-document {
    transform: translateY(10px);
}
.form form input:not([type=submit]) {
    background: none;
    outline: none;
    border: none;
    display: block;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #AAA;
    color: #444;
    font-size: 15px;
    z-index: 1;
}
.form form input:not([type=submit]).hasError {
    border-color: #f95959;
}
.form form input[type=checkbox] {
    display:inline-block;
    width: auto;
}
.form form span.error {
    color: #f95959;
    font-size: 12px;
    position: absolute;
    bottom: -20px;
    right: 0;
    display: none;
}
.form form input[type=password] {
    color: #f95959;
}
.form form .CTA {
    margin-top: 30px;
}
.form form .CTA button {
    font-size: 18px;
    background: #EA005F;
    color: #fff;
    font-weight: 600;
    width: 100%;
    letter-spacing: 0.5px;
    margin-top: 15px;
}
.form form .CTA button:hover{
    background: #FFF;
    color:#EA005F;
}
.form form .CTA a.switch {
    font-size: 13px;
    font-weight: 400;
    color: #bbbbbb;
    text-decoration: underline;
    transition: all 0.3s;
}
.form form .CTA a.switch:hover {
    color: #f95959;
}
.table>:not(caption)>*>*{

}
footer {
    text-align: center;
}
footer p {
    color: #777;
}
footer p a, footer p a:focus {
    color: #b8b09f;
    transition: all 0.3s;
    text-decoration: none !important;
}
footer p a:hover, footer p a:focus:hover {
    color: #f95959;
}

@media (max-width: 768px) {

    section#formHolder {
        margin-top: 15px;
        padding: 0;
    }
    section#formHolder div.brand {
        min-height: 200px !important;
    }
    section#formHolder div.brand .logo {
        display: none;
    }
    section#formHolder div.brand.active {
        min-height: 100vh !important;
    }
    section#formHolder div.brand .heading.active {
        top: 200px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    section#formHolder div.brand .success-msg p {
        font-size: 16px;
    }
    section#formHolder div.brand .success-msg a {
        padding: 5px 30px;
        font-size: 10px;
    }
    section#formHolder .form {
        width: 80vw;
        min-height: 500px;
        margin-left: 10vw;
    }
    section#formHolder .form .form-peice {
        margin: 0;
        top: 0;
        left: 0;
        width: 100% !important;
        transition: all 0.5s ease-in-out;
    }
    section#formHolder .form .form-peice.switched {
        transform: translateY(-100%);
        width: 100%;
        left: 0;
    }
    section#formHolder .form .form-peice > form {
        width: 100% !important;
        padding: 60px;
        left: 50%;
    }
    .table tr td>strong{
        padding: 0px !important;
    }
}
@media (max-width: 480px) {
    section#formHolder .form {
        width: 100vw;
        margin-left: 0;
    }

    h2.login-title {
        font-size: 50px !important;
    }
    .table tr td>strong{
        padding: 0px !important;
    }
}
#loader-canvas {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3;
    border-top: 4px solid #CC3366;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

#data-tabs .elementor-tabs-wrapper{
    display: flex;
    flex-direction: row;
}
#data-tabs .elementor-tab-mobile-title {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.list-unstyled li{
  text-align: left;
}