@charset "UTF-8";
/* General Animations */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,800;1,600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Manjari&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");
.progressBar {
  position: fixed;
  top: 0;
  height: 4px;
  display: block;
  z-index: 9999;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  background-clip: padding-box; /*margin: 0.5rem 0 1rem 0;*/
  overflow: hidden;
}

.progressBar .indeterminate {
  background-color: black;
}

.progressBar .indeterminate:before {
  content: "";
  position: absolute;
  background-color: #2C2470;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progressBar .indeterminate:after {
  content: "";
  position: absolute;
  background-color: #2C2470;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s;
}
@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
.CloseResponse > .btn-default {
  background: #ff0000 !important;
  box-shadow: none !important;
}

.popup-effect {
  opacity: 0;
  animation-name: popup-display;
  animation-duration: 500ms;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes popup-display {
  to {
    transform: rotate(0) translateY(0) scale(1);
    opacity: 1;
  }
  from {
    transform: rotate(0) translateY(-5%) scale(0);
    opacity: 0;
  }
}
#Check-icon {
  opacity: 0;
  animation-name: popup-Check-icon;
  animation-duration: 500ms;
  animation-timing-function: ease;
  animation-delay: 3.2s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes popup-Check-icon {
  to {
    opacity: 1;
  }
  from {
    opacity: 0;
  }
}
#Circle-Group {
  opacity: 0;
  animation-name: popup-Circle-Group;
  animation-duration: 500ms;
  animation-timing-function: ease;
  animation-delay: 3s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes popup-Circle-Group {
  to {
    opacity: 1;
  }
  from {
    opacity: 0;
    transform: scale(1);
  }
}
#Explotion2 {
  opacity: 0;
  animation-name: popup-Explotion2;
  animation-duration: 6.5s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes popup-Explotion2 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  6%, 100% {
    opacity: 0;
  }
}
#Explotion3 {
  opacity: 0;
  animation-name: popup-Explotion3;
  animation-duration: 7.5s;
  animation-delay: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes popup-Explotion3 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  6%, 100% {
    opacity: 0;
  }
}
@keyframes pulse_animation {
  0%, 100%, 30%, 50%, 60%, 80% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
  }
  70% {
    transform: scale(1.05);
  }
}
.pulse {
  animation-name: pulse_animation;
  animation-duration: 5s;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

#DesktopContentText,
#DesktopContentbutton,
.DesktopContentWrapper {
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

#DesktopContentText,
#DesktopContentbutton,
.DesktopContentWrapper,
.Template-SocialMedia-Interact {
  animation-timing-function: ease;
  opacity: 0;
}

.DesktopContentWrapper {
  animation-name: DesktopContentWrapper-frames;
  animation-duration: 2.5s;
}

@keyframes DesktopContentWrapper-frames {
  to {
    opacity: 1;
  }
  from {
    opacity: 0;
  }
}
#DesktopContentText {
  animation-name: DesktopContentText-frames;
  animation-duration: 2.5s;
}

@keyframes DesktopContentText-frames {
  to {
    transform: rotate(0) translateY(0);
    opacity: 1;
  }
  from {
    transform: rotate(0) translateY(-15%);
    opacity: 0;
  }
}
#DesktopContentbutton {
  animation-name: DesktopContentbutton-frames;
  animation-duration: 1s;
}

@keyframes DesktopContentbutton-frames {
  0% {
    transform: rotate(0) translateX(0);
    opacity: 0;
  }
  50% {
    transform: rotate(0) translateX(-8%);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0) translateX(0);
    opacity: 1;
  }
}
.Template-SocialMedia-Interact {
  animation-name: SocialMedia-Interact;
  animation-duration: 1s;
  animation-delay: 5s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

#Off-behaviour,
#On-behaviour-holder,
#On-behaviour-link,
.Bar-behaviour {
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes SocialMedia-Interact {
  0% {
    transform: rotate(0) translateY(-15%);
    opacity: 0;
  }
  100% {
    transform: rotate(0) translateY(0);
    opacity: 1;
  }
}
#Off-behaviour {
  opacity: 0;
  animation-name: Wizard-Off-behaviour;
  animation-duration: 1s;
  animation-delay: 5.5s;
}

@keyframes Wizard-Off-behaviour {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
#On-behaviour-holder {
  opacity: 0;
  animation-name: Wizard-Interact;
  animation-duration: 0.3s;
  animation-delay: 2.5s;
}

@keyframes Wizard-Interact {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
#On-behaviour-link {
  opacity: 0;
  animation-name: OnWizard-Interact;
  animation-duration: 0.4s;
  animation-delay: 3s;
}

@keyframes OnWizard-Interact {
  0% {
    transform: rotate(0) scale(-0.5);
    opacity: 0;
  }
  50% {
    transform: rotate(0) scale(1.2);
    background: 0 0;
    opacity: 0.5;
  }
  100% {
    transform: rotate(0);
    background: 0 0;
    opacity: 1;
  }
}
.Bar-behaviour {
  opacity: 0;
  animation-name: Bar-Interact-stepOne;
  animation-duration: 0.6s;
  animation-delay: 2.5s;
}

@keyframes Bar-Interact-stepOne {
  0% {
    opacity: 0;
  }
  50% {
    background: 0 0;
    opacity: 0.5;
  }
  100% {
    background: 0 0;
    opacity: 1;
  }
}
.nav-holder {
  animation-name: slideInLeft;
  animation-duration: 0.4s;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.loader {
  background-image: url("/images/page-loader.gif");
  background-color: rgba(248, 246, 244, 0.8);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 9999;
}

html {
  background-color: #ffffff;
}
html body {
  background-color: #f7f7f7;
}
html body .Main-content {
  margin: 0;
  padding: 0 !important;
}

#gSignInWrapper {
  width: 100%;
}
#gSignInWrapper #customBtn {
  display: inline-block;
  background: white;
  color: #444;
  width: 100%;
  border: 0;
  white-space: nowrap;
  border-radius: 4px;
}
#gSignInWrapper #customBtn:hover {
  cursor: pointer;
}
#gSignInWrapper #customBtn span.label {
  font-family: serif;
  font-weight: normal;
}
#gSignInWrapper #customBtn span.icon {
  background: url("/images/logos/sign-in/g-normal.svg") transparent center no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
}
#gSignInWrapper #customBtn span.buttonText {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  font-weight: bold;
  /* Use the Roboto font that is loaded in the <head> */
  font-family: "Roboto", sans-serif;
}
@media (max-width: 75em) {
  #gSignInWrapper #customBtn span.buttonText {
    font-size: 14px;
  }
}
@media (max-width: 56.25em) {
  #gSignInWrapper #customBtn span.buttonText {
    font-size: 14px;
  }
}
@media (max-width: 48em) {
  #gSignInWrapper #customBtn span.buttonText {
    font-size: 13px;
  }
}
@media (max-width: 37.5em) {
  #gSignInWrapper #customBtn span.buttonText {
    font-size: 13px;
  }
}
@media (min-width: 75em) {
  #gSignInWrapper #customBtn span.buttonText {
    font-size: 14px;
  }
}
@media (min-width: 112.5em) {
  #gSignInWrapper #customBtn span.buttonText {
    font-size: 14px;
  }
}
#gSignInWrapper #customBtn2 {
  display: inline-block;
  background: white;
  color: #444;
  width: 100%;
  border: 0;
  white-space: nowrap;
  border-radius: 4px;
}
#gSignInWrapper #customBtn2:hover {
  cursor: pointer;
}
#gSignInWrapper #customBtn2 span.label {
  font-family: serif;
  font-weight: normal;
}
#gSignInWrapper #customBtn2 span.icon {
  background: url("/images/logos/sign-in/g-normal.svg") transparent center no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
}
#gSignInWrapper #customBtn2 span.buttonText {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  font-weight: bold;
  /* Use the Roboto font that is loaded in the <head> */
  font-family: "Roboto", sans-serif;
}
@media (max-width: 75em) {
  #gSignInWrapper #customBtn2 span.buttonText {
    font-size: 14px;
  }
}
@media (max-width: 56.25em) {
  #gSignInWrapper #customBtn2 span.buttonText {
    font-size: 14px;
  }
}
@media (max-width: 48em) {
  #gSignInWrapper #customBtn2 span.buttonText {
    font-size: 13px;
  }
}
@media (max-width: 37.5em) {
  #gSignInWrapper #customBtn2 span.buttonText {
    font-size: 13px;
  }
}
@media (min-width: 75em) {
  #gSignInWrapper #customBtn2 span.buttonText {
    font-size: 14px;
  }
}
@media (min-width: 112.5em) {
  #gSignInWrapper #customBtn2 span.buttonText {
    font-size: 14px;
  }
}

.General-button {
  background: none;
}
.General-button button {
  margin: 0;
  border: 0;
  background: none;
  padding: 1em;
}
.General-button button svg {
  margin: 3px 0 0;
  position: absolute;
  left: 1rem;
  font-size: 1.45em;
  color: #f37732;
}
.General-button button a {
  color: #ffffff;
  font-size: 1.5em;
  width: 100%;
  float: left;
  text-align: center;
  text-decoration: none;
}
.General-button button a:hover {
  color: #1c75bc;
  font-size: 1.5em;
  width: 100%;
  float: left;
  text-align: center;
  text-decoration: none;
}

.Form-Actionbutton {
  background: none;
}
.Form-Actionbutton button {
  margin: 0;
  border: 0;
  background: none;
}
.Form-Actionbutton button a {
  color: #ffffff;
  font-size: 1.1em;
  width: 100%;
  background: #f37732;
  padding: 0.3rem;
  border-bottom: 3px solid #d16122;
}
.Form-Actionbutton button a:hover {
  color: #ffd900;
  font-size: 1.1em;
  width: 100%;
  background: #f37732;
  padding: 0.3rem;
  border-bottom: 3px solid #d16122;
}
.Form-Actionbutton button a svg {
  margin: 6px 0 0;
  position: absolute;
  left: 1rem;
  font-size: 1em;
  color: #ffffff;
}

.Promoter-Actionbutton {
  background: none;
}
.Promoter-Actionbutton a:first-of-type {
  color: #f37732;
  border: 2px solid #f37732;
}
.Promoter-Actionbutton a:first-of-type:hover {
  color: #0085cc;
}
.Promoter-Actionbutton a:first-of-type svg {
  color: #f37732;
}
.Promoter-Actionbutton a {
  margin: 0 0 0.5rem;
  color: #2C2470;
  font-size: 1.1em;
  width: 100%;
  padding: 0.3rem;
  border: 2px solid #2C2470;
}
.Promoter-Actionbutton a:hover {
  margin: 0 0 0.5rem;
  color: #2C2470;
  font-size: 1.1em;
  width: 100%;
  padding: 0.3rem;
  border: 2px solid #2C2470;
}
.Promoter-Actionbutton a svg {
  margin: 6px 0 0;
  position: absolute;
  left: 0.5rem;
  font-size: 0.9em;
  color: #2C2470;
}

.VerifyClient-Button {
  /* input[type='text'] {
      font-size: 16px;
      background-color: #fff;
      &:focus {
          outline: 0;
      }
  } */
}
.VerifyClient-Button button:first-of-type {
  background-color: #2C2470;
  font-size: 16px;
  border: 0;
  display: block;
}
.VerifyClient-Button button {
  background-color: #27990c;
  font-size: 16px;
  border: 0;
  color: #ffffff;
  display: none;
}
.VerifyClient-Button button svg {
  color: #ffffff;
}

.Admin-StyleContainer-buttons {
  float: left;
  width: 100%;
  cursor: pointer;
  padding: 5px 0 9px 0;
  background: #0085cc;
  border: 0;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.Admin-StyleContainer-buttons:hover {
  background: #2C2470;
  color: #ffffff;
}

.buttom_wrapper div a {
  background-color: #2C2470;
  color: #ffffff;
  padding: 0.4em 0;
}
.buttom_wrapper div a span {
  color: #94bee3;
}

#Pay-buttom {
  float: left;
  background: #f2f2f2;
  color: #bfbfbf;
  font-size: 1.3em;
  padding: 11px 0;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
}

#back-to-top-btn {
  z-index: 9999;
  display: none;
  position: fixed;
  bottom: 90px;
  right: 3%;
  font-size: 26px;
  width: 50px;
  height: 50px;
  background: #f37835;
  color: #ffffff;
  cursor: pointer;
  outline: none;
  border: 3px solid #ffffff;
  border-radius: 50%;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-property: background-color, color;
}

#back-to-top-btn:hover, #back-to-top-btn:focus {
  background: #bd5720;
  color: #fff;
}

.Admin-StyleContainer {
  font-family: "Montserrat";
}
.Admin-StyleContainer .iconLabel {
  color: black;
}
.Admin-StyleContainer .iconLabel i {
  color: #0085cc;
}
.Admin-StyleContainer .Tip-Holder {
  background-image: url(/images/ui/WaterMark-rexter.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
}
.Admin-StyleContainer .Tip-Holder label {
  margin: 0;
  color: #000000;
  width: 100%;
  text-align: center;
  font-size: 2.1em;
}
@media (max-width: 75em) {
  .Admin-StyleContainer .Tip-Holder label {
    font-size: 1.5em;
  }
}
@media (max-width: 56.25em) {
  .Admin-StyleContainer .Tip-Holder label {
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .Admin-StyleContainer .Tip-Holder label {
    font-size: 1.2em;
  }
}
@media (max-width: 37.5em) {
  .Admin-StyleContainer .Tip-Holder label {
    font-size: 0.9em;
  }
}
@media (min-width: 75em) {
  .Admin-StyleContainer .Tip-Holder label {
    font-size: 2.1em;
  }
}
@media (min-width: 112.5em) {
  .Admin-StyleContainer .Tip-Holder label {
    font-size: 2.1em;
  }
}
.Admin-StyleContainer .Tip-Holder .row i {
  color: #0085cc;
}
.Admin-StyleContainer .Tip-Holder .row span {
  margin: 0 0.9em 0 0;
  color: #0085cc;
}
.Admin-StyleContainer .Benefits-HomeHolder {
  /* background-image: url(/images/ui/WaterMark-rexter.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center; */
  padding: 3em 0 0;
  margin: 3em 0 0;
}
.Admin-StyleContainer .Benefits-HomeHolder label {
  margin: 0.5rem 0 6rem;
  color: #000000;
  width: 100%;
  text-align: center;
  font-size: 2.1em;
}
@media (max-width: 75em) {
  .Admin-StyleContainer .Benefits-HomeHolder label {
    font-size: 1.5em;
  }
}
@media (max-width: 56.25em) {
  .Admin-StyleContainer .Benefits-HomeHolder label {
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .Admin-StyleContainer .Benefits-HomeHolder label {
    font-size: 1.2em;
  }
}
@media (max-width: 37.5em) {
  .Admin-StyleContainer .Benefits-HomeHolder label {
    font-size: 2em;
    margin: 0.5rem 0 2rem;
  }
}
@media (min-width: 75em) {
  .Admin-StyleContainer .Benefits-HomeHolder label {
    font-size: 2.1em;
  }
}
@media (min-width: 112.5em) {
  .Admin-StyleContainer .Benefits-HomeHolder label {
    font-size: 2.1em;
  }
}
.Admin-StyleContainer .Benefits-HomeHolder .row i {
  color: #0085cc;
}
.Admin-StyleContainer .Benefits-HomeHolder .row span {
  margin: 0 0.9em 0 0;
  color: #0085cc;
}
.Admin-StyleContainer .Benefits-HomeHolder .row p {
  font-size: 1.3em;
}
@media (max-width: 37.5em) {
  .Admin-StyleContainer .Benefits-HomeHolder .row p {
    font-size: 1.2em;
  }
}

#Admin-StyleCover-Login {
  /* background:url("/images/ui/global/LoginWaterMark.png") no-repeat bottom right;
  background-size:45%; */
  text-shadow: none;
}

.Fieldset-control select {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-group select {
  display: block;
  width: 100% !important;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.global-label svg {
  color: #f37732;
}

.global-table-button {
  color: #000;
}
@media (max-width: 75em) {
  .global-table-button {
    color: #000000;
  }
}
@media (max-width: 56.25em) {
  .global-table-button {
    color: #000000;
  }
}
@media (max-width: 37.5em) {
  .global-table-button {
    color: #fff;
  }
}
@media (min-width: 112.5em) {
  .global-table-button {
    color: #000;
  }
}

@media (max-width: 75em) {
  .img-2x {
    float: left;
    width: 35%;
    margin: 0 0.8rem 0 0;
  }
}
@media (max-width: 56.25em) {
  .img-2x {
    float: left;
    width: 35%;
    margin: 0 0.8rem 0 0;
  }
}
@media (max-width: 48em) {
  .img-2x {
    float: left;
    width: 35%;
    margin: 0 0.8rem 0 0;
  }
}
@media (max-width: 37.5em) {
  .img-2x {
    float: none;
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 75em) {
  .img-2x {
    float: left;
    width: 35%;
    margin: 0 0.8rem 0 0;
  }
}
@media (min-width: 112.5em) {
  .img-2x {
    float: left;
    width: 35%;
    margin: 0 0.8rem 0 0;
  }
}

.form-register-wrapper .form-group label span {
  color: #5f9ed5;
  font-size: 1.4em;
}
.form-register-wrapper .snap-holder-step {
  margin: auto auto 15px;
  width: 60px;
  height: 60px;
  background-color: #fafafa;
}
.form-register-wrapper .snap-holder-step span {
  margin: 20px 0 0;
  color: #ec923d;
  font-size: 2em;
  line-height: 15px;
}

.validation-Holder-Large-UserName {
  position: relative;
  width: auto;
  margin: 0;
}

.validation-Holder-Large {
  position: relative;
  width: auto;
  margin: 0;
  z-index: 3;
}

.validation-Holder-Medium {
  position: relative;
  width: auto;
  margin: 0 0 0 21.4%;
}

.validation-Holder-Small {
  position: relative;
  width: auto;
  margin: 0 0 0 21.5%;
}

.validation-summary-errors {
  line-height: 15px;
  height: auto;
  margin: 0;
  padding: 1em 0 1em 0.5em;
  background: #ff4c6c;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  float: left;
  font-family: arial;
  text-shadow: none;
  font-size: 1em;
  width: 100%;
  text-align: center;
}

.field-validation-approved {
  background: url("/images/Validation-approve-icon.png") no-repeat scroll 10px 10px #e9f3d2;
  border: 1px solid rgb(146, 183, 80);
  color: rgb(146, 183, 80);
  font-size: 1.1em;
  height: 50px;
  margin-right: 2%;
  margin-top: 0;
  padding-left: 35px;
  padding-top: 15px;
  width: 230px;
  float: right;
}

.field-validation-error {
  background: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/></svg>") no-repeat center left;
  background-size: 18px;
  margin: 0 0 0.3rem;
  padding: 7px 4% 8px 26px;
  border: 0;
  color: white;
  float: left;
  width: 100%;
  font-size: 0.9em;
  border-radius: 4px;
  font-weight: 500;
  background-position: top 8px left 5px;
  background-color: #ff4c6c;
  text-shadow: none;
  font-family: Helvetica;
}

.quoteForm form {
  max-width: 500px;
  margin: 0 auto;
  font-family: sans-serif;
}
.quoteForm form .accordion-step {
  display: none;
  border: 1px solid #ccc;
  padding: 20px 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}
.quoteForm form .accordion-step .accordion-title {
  color: #0e5b87;
  background: #eaf7ff;
  padding: 1rem;
  cursor: pointer;
  margin: 0;
  font-weight: bold;
  border: 1px solid #85caef;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.quoteForm form .accordion-step .accordion-content {
  display: block;
  padding: 1rem 0;
}
.quoteForm form .accordion-step .accordion-content .form-group {
  margin-bottom: 15px;
}
.quoteForm form .accordion-step .accordion-content .form-group label {
  display: flex;
  align-items: center;
}
.quoteForm form .accordion-step .accordion-content .form-group label span {
  color: #0085cc;
}
.quoteForm form .accordion-step .accordion-content .form-group .row p span {
  color: #0085cc;
}
.quoteForm form .accordion-step .accordion-content small {
  color: #0085cc;
  font-size: 0.8em;
}
.quoteForm form .accordion-step .accordion-content input[type=text],
.quoteForm form .accordion-step .accordion-content input[type=email],
.quoteForm form .accordion-step .accordion-content input[type=tel],
.quoteForm form .accordion-step .accordion-content textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}
.quoteForm form .accordion-step .accordion-content button {
  width: 100%;
  border-radius: 5px;
  padding: 10px 15px;
  background: #2d8f08;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quoteForm form .accordion-step .accordion-content button:hover:not(:disabled) {
  background: #1f6a06;
}
.quoteForm form .accordion-step .accordion-content button.disabled-btn,
.quoteForm form .accordion-step .accordion-content button:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
}
.quoteForm form .accordion-step .accordion-content .captcha-placeholder {
  background: #eee;
  padding: 10px;
  text-align: center;
  color: #666;
}
.quoteForm form .accordion-step.active {
  display: block;
}
.quoteForm form .accordion-step.completed-step {
  display: block; /* Asegurar que los pasos completados siempre sean visibles */
}
.quoteForm form .accordion-step.completed-step .accordion-title {
  background: #d4edda;
  border-color: #c3e6cb;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Añadir indicador visual de que es clickeable */
  /* Añadir indicador de editar */
}
.quoteForm form .accordion-step.completed-step .accordion-title:hover {
  background: #c3e6cb;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.quoteForm form .accordion-step.completed-step .accordion-title::after {
  content: "✓";
  position: absolute;
  right: 1rem;
  color: #28a745;
}
.quoteForm form .accordion-step.completed-step .accordion-title::before {
  content: "Editar";
  position: absolute;
  right: 3rem;
  color: #28a745;
  font-size: 0.8em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.quoteForm form .accordion-step.completed-step .accordion-title:hover::before {
  opacity: 1;
}

#enviar {
  padding: 10px 15px;
  background: #2d8f08;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
#enviar:hover:not(:disabled) {
  background: #1f6a06;
}
#enviar.disabled-btn, #enviar:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

.next-btn,
.next-step {
  padding: 10px 15px;
  background: #2d8f08;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.next-btn:hover:not(:disabled),
.next-step:hover:not(:disabled) {
  background: #1f6a06;
}
.next-btn.disabled-btn, .next-btn:disabled,
.next-step.disabled-btn,
.next-step:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

.Topbar {
  top: 0;
  background: white;
  border-bottom: 0;
  z-index: 999;
  box-shadow: none;
  height: auto;
  padding: 0 !important;
}
@media (max-width: 75em) {
  .Topbar {
    height: auto;
  }
}
@media (max-width: 56.25em) {
  .Topbar {
    height: auto;
  }
}
@media (max-width: 48em) {
  .Topbar {
    height: auto;
  }
}
@media (max-width: 37.5em) {
  .Topbar {
    height: auto;
  }
}
@media (min-width: 112.5em) {
  .Topbar {
    height: auto;
  }
}
.Topbar #Circle-wrap {
  margin: 4px 0 0;
  position: relative;
  cursor: pointer;
  z-index: 5;
}
.Topbar #Circle-wrap .circle {
  width: 27px;
  height: 30px;
  position: relative;
}
.Topbar #Circle-wrap .circle.icon.close {
  float: none !important;
  opacity: 1;
}
.Topbar #Circle-wrap .line {
  position: absolute;
  width: 100%;
  height: 4px;
  background: black;
  border-radius: 8px;
  transition: all cubic-bezier(0.26, 0.1, 0.27, 1.55) 0.35s;
}
.Topbar #Circle-wrap .top {
  top: 18%;
}
.Topbar #Circle-wrap .middle {
  top: 48%;
}
.Topbar #Circle-wrap .bottom {
  top: 78%;
}
.Topbar #Circle-wrap .icon.close .top {
  background: black;
  transform: rotate(45deg);
  top: 48%;
}
.Topbar #Circle-wrap .icon.close .middle, .Topbar #Circle-wrap .icon.close .bottom {
  background: black;
  transform: rotate(-45deg);
  top: 48%;
}
.Topbar .LogoMobileFix {
  position: relative;
}
@media (max-width: 75em) {
  .Topbar .LogoMobileFix {
    position: relative;
  }
}
@media (max-width: 56.25em) {
  .Topbar .LogoMobileFix {
    position: relative;
  }
}
@media (max-width: 48em) {
  .Topbar .LogoMobileFix {
    position: absolute;
  }
}
@media (max-width: 37.5em) {
  .Topbar .LogoMobileFix {
    position: absolute;
    top: 7px;
  }
}
@media (min-width: 112.5em) {
  .Topbar .LogoMobileFix {
    position: relative;
  }
}
.Topbar .LogoMobileFix .Topbar-LogoHolder {
  height: auto;
  z-index: 2;
}
@media (max-width: 75em) {
  .Topbar .LogoMobileFix .Topbar-LogoHolder {
    width: 90px;
    margin: 0.3rem 0 0;
  }
}
@media (max-width: 56.25em) {
  .Topbar .LogoMobileFix .Topbar-LogoHolder {
    width: 90px;
    margin: 0.3rem 0 0;
  }
}
@media (max-width: 48em) {
  .Topbar .LogoMobileFix .Topbar-LogoHolder {
    width: 90px;
    margin: 0.3rem 0 0;
  }
}
@media (max-width: 37.5em) {
  .Topbar .LogoMobileFix .Topbar-LogoHolder {
    width: 90px;
    margin: 2px 0 0 1.2rem;
  }
}
@media (min-width: 112.5em) {
  .Topbar .LogoMobileFix .Topbar-LogoHolder {
    width: 90px;
    margin: 0.3rem 0 0;
  }
}
.Topbar .LogonUserControl {
  position: relative;
  z-index: 1;
}
.Topbar .Search_Holder {
  z-index: 6;
  top: 0;
}
.Topbar .Top_Menu {
  float: right;
  margin: 10px auto auto;
  padding: 0 !important;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu {
    padding: 10px 0 !important;
    margin: 10px auto auto;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu {
    padding: 10px 0 !important;
    margin: 10px auto auto;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu {
    padding: 10px 0 !important;
    margin: 10px auto auto;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu {
    padding: 10px 0 1px 0 !important;
    margin: auto;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu {
    padding: 1rem 0 0 !important;
    margin: 10px auto auto;
  }
}
.Topbar .Top_Menu .Call-button {
  float: left;
  width: 147px;
  margin: 0 1rem 0 0;
  background: none;
  padding: 0.25rem;
  border: 2px solid #000000;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .Call-button {
    margin: 0 3rem 0 0;
    width: 145px;
    padding: 0.25rem;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .Call-button {
    margin: 0 3rem 0 0;
    width: 120px;
    padding: 0.25rem;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .Call-button {
    margin: 0 2.3rem 0 0;
    width: 145px;
    padding: 0.25rem;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .Call-button {
    margin: 0.1rem 0.5rem 0 0;
    width: 43px;
    padding: 0.3rem 0;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .Call-button {
    margin: 0 3rem 0 0;
    width: 145px;
    padding: 0.25rem;
  }
}
.Topbar .Top_Menu .Call-button span {
  color: #000000;
  font-size: 1em;
  margin: 0 0.3rem 0 0.2rem;
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .Call-button span {
    font-size: 1.4em;
  }
}
.Topbar .Top_Menu .Call-button aside {
  line-height: 18px;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .Call-button aside {
    display: flex;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .Call-button aside {
    display: flex;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .Call-button aside {
    display: flex;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .Call-button aside {
    display: none;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .Call-button aside {
    display: flex;
  }
}
.Topbar .Top_Menu .Call-button aside p {
  margin: 0;
  text-align: center;
  color: #000000;
  font-weight: bold;
  font-size: 0.9em;
}
.Topbar .Top_Menu .Call-button aside p:nth-last-child(2) {
  font-size: 0.9em;
  color: #000000;
  margin: 0 0.3rem 0 0;
  font-weight: normal;
}
@media (min-width: 75em) {
  .Topbar .Top_Menu .Call-button aside p {
    color: #0085cc;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .Call-button aside p {
    color: #0085cc;
  }
}
.Topbar .Top_Menu .Call-button aside p span {
  width: 100% !important;
  float: left;
  margin: 0;
}
.Topbar .Top_Menu .CartShop_view {
  float: left;
  width: 55px;
  display: block;
  margin: 0 2rem 0 0;
  padding-left: 0;
  border: 0;
  background: none;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .CartShop_view {
    margin: 0 3rem 0 0;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .CartShop_view {
    margin: 0 3rem 0 0;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .CartShop_view {
    margin: 0 2.3rem 0 0;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .CartShop_view {
    margin: 0 0;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .CartShop_view {
    margin: 0 3rem 0 0;
  }
}
.Topbar .Top_Menu .CartShop_view i {
  color: #2C2470;
  font-size: 1em;
}
.Topbar .Top_Menu .CartShop_view svg {
  color: #2C2470;
  font-size: 1em;
}
.Topbar .Top_Menu .CartShop_view .CartShop_view-Products {
  color: #2C2470;
  float: left;
  font-size: 12px;
  font-weight: lighter;
  margin-left: 2px;
  margin-top: 10px;
  text-decoration: none;
}
.Topbar .Top_Menu .CartShop_view .CartShop_view-Quantity {
  color: #2C2470;
  width: 100%;
  float: left;
  font-size: 10px;
  margin: 0;
  line-height: 11px;
  padding: 0 0 0 12px;
}
.Topbar .Top_Menu .CartShop_view .CartShop_view-Total {
  width: 100%;
  color: #2C2470;
  float: left;
  font-size: 10px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  display: block;
}
.Topbar .Top_Menu .ViewOrder {
  display: block;
  margin: 0 1rem 0 0;
  padding-left: 0;
  border: 0;
  background: none;
  opacity: 0.8;
  text-shadow: none;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .ViewOrder {
    margin: 0 1rem 0 0;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .ViewOrder {
    margin: 0 1rem 0 0;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .ViewOrder {
    margin: 0 1rem 0 0;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .ViewOrder {
    margin: 0 0.3rem 0 0;
    font-size: 1.3em;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .ViewOrder {
    margin: 0 1rem 0 0;
  }
}
.Topbar .Top_Menu .ViewOrder i {
  font-size: 1.2em;
  color: #000000;
}
.Topbar .Top_Menu .ViewOrder span {
  font-size: 1.8em;
  color: #000000;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .ViewOrder span {
    font-size: 1.2em;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .ViewOrder span {
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .ViewOrder span {
    font-size: 1.2em;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .ViewOrder span {
    font-size: 1.8em;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .ViewOrder span {
    font-size: 1.2em;
  }
}
.Topbar .Top_Menu .ViewOrder svg {
  font-size: 1.2em;
  color: #2C2470;
}
.Topbar .Top_Menu .ViewOrder a {
  margin: -5px 0 0;
  color: #2C2470;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .ViewOrder a {
    display: block;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .ViewOrder a {
    display: block;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .ViewOrder a {
    display: block;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .ViewOrder a {
    display: none;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .ViewOrder a {
    display: block;
  }
}
.Topbar .Top_Menu .ViewOrder:hover {
  border: 0;
  background: none;
  opacity: 1;
}
.Topbar .Top_Menu .ViewOrder:active {
  border: 0;
  background: none;
}
.Topbar .Top_Menu .ViewOrder:focus {
  border: 0;
  background: none;
  outline: 0;
}
.Topbar .Top_Menu .ViewOrder:focus-visible {
  border: 0;
  background: none;
  outline: 0;
}
.Topbar .Top_Menu .Login {
  display: block;
  margin: 0;
  padding-left: 0;
  border: 0;
  background: none;
  opacity: 0.8;
  text-shadow: none;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .Login {
    margin: 0;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .Login {
    margin: 0;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .Login {
    margin: 0;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .Login {
    margin: 0 0.7rem 0 0;
    font-size: 1.3em;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .Login {
    margin: 0;
  }
}
.Topbar .Top_Menu .Login i {
  font-size: 1.2em;
  color: #000000;
}
.Topbar .Top_Menu .Login span {
  font-size: 1.8em;
  color: #000000;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .Login span {
    font-size: 1.2em;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .Login span {
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .Login span {
    font-size: 1.2em;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .Login span {
    font-size: 1.8em;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .Login span {
    font-size: 1.2em;
  }
}
.Topbar .Top_Menu .Login svg {
  font-size: 1.2em;
  color: #2C2470;
}
.Topbar .Top_Menu .Login a {
  margin: -5px 0 0;
  color: #2C2470;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .Login a {
    display: block;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .Login a {
    display: block;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .Login a {
    display: block;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .Login a {
    display: none;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .Login a {
    display: block;
  }
}
.Topbar .Top_Menu .Login:hover {
  border: 0;
  background: none;
  opacity: 1;
}
.Topbar .Top_Menu .Login:active {
  border: 0;
  background: none;
}
.Topbar .Top_Menu .Login:focus {
  border: 0;
  background: none;
  outline: 0;
}
.Topbar .Top_Menu .Login:focus-visible {
  border: 0;
  background: none;
  outline: 0;
}
.Topbar .Top_Menu .LogonUser-Wrapper {
  right: 0px;
  top: 0;
  display: block;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder {
  margin: 0;
  position: absolute;
  right: 0.3rem;
  background-color: #f5f5f5;
  border-radius: 120px;
  height: 40px;
  width: 40px;
  top: 0.5rem;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots {
  width: 40px;
  height: 20px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
  margin: 1em 0.2em;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots:focus {
  outline: none;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots:after, .Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots:before,
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots span {
  width: 10%;
  height: 20%;
  border-radius: 100px;
  position: absolute;
  left: 0px;
  background: #2c8caf;
  transform: rotate(0deg);
  transition: all 0.4s;
  left: 1%;
  right: 1%;
  margin: 0 auto;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots:after, .Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots:before {
  content: "";
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots:after {
  top: -10%;
  margin-top: 0px;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots:before {
  bottom: -10%;
  margin-bottom: 0px;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots span {
  top: 50%;
  margin-top: -2px;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots.on:after {
  transform: rotate(135deg) translate(9px, -9px);
  width: 73%;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots.on:before {
  transform: rotate(225deg);
  bottom: 43%;
  margin-bottom: -2px;
  width: 66%;
}
.Topbar .Top_Menu .LogonUser-Wrapper .SandwichButton-Holder button.dots.dots.on span {
  transform: rotate(135deg);
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder {
  width: auto;
  background: none;
  padding: 0;
  position: absolute;
  right: 0;
  display: block;
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button {
  float: left;
  width: 100%;
  margin: 0;
  background-color: #ffffff;
  padding: 1em;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  border-radius: 4px;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button {
    margin: 0;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dfdfdf;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button {
    margin: 0;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dfdfdf;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button {
    margin: 0;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dfdfdf;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button {
    margin: 0 0 1% 1%;
    width: 48%;
    border: 1px solid #dfdfdf;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button {
    margin: 0;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dfdfdf;
  }
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button svg {
  margin: 0;
  left: 3%;
  position: absolute;
  font-size: 1.3em;
  color: #f37732;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button svg {
    position: absolute;
    left: 3%;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button svg {
    position: absolute;
    left: 3%;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button svg {
    position: absolute;
    left: 3%;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button svg {
    position: relative;
    left: 0;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button svg {
    position: absolute;
    left: 3%;
  }
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a {
  color: #858281;
  font-size: 1.3em;
  width: 100%;
  float: left;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a {
    font-size: 1.3em;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a {
    font-size: 1.3em;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a {
    font-size: 1.3em;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a {
    font-size: 1.08em;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a {
    font-size: 1.3em;
  }
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a:hover {
  color: #1c75bc;
  font-size: 1.3em;
  width: 100%;
  float: left;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a:hover {
    font-size: 1.3em;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a:hover {
    font-size: 1.3em;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a:hover {
    font-size: 1.3em;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a:hover {
    font-size: 1.08em;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button a:hover {
    font-size: 1.3em;
  }
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder button span {
  margin: 3px 0 0;
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder .CurrentUserInfo {
  float: left;
  width: 100%;
  background: none;
  padding: 1em;
  border-bottom: 2px solid #ffe0d0;
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder .CurrentUserInfo div div a img {
  border: 1px solid #ffceb5;
  padding: 3px;
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder .CurrentUserInfo p {
  color: #9a4718;
  float: left;
  font-size: 1em;
  line-height: 11px;
  margin: 0 0 5px;
  padding: 0;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
}
.Topbar .Top_Menu .LogonUser-Wrapper .LogonUser-holder .CurrentUserInfo em {
  color: #1580a6;
  float: left;
  font-size: 1em;
  margin: 1em 0;
  width: 100%;
  font-weight: bold;
}
.Topbar .Top_Menu .UtilityAction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  float: right;
  margin: 0 0.5em 0 0;
  font-size: 1em;
  border: 1px solid #2C2470;
  background: #ffffff;
  width: 40px;
  height: 40px;
  color: #2C2470;
  outline: 0;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .UtilityAction {
    margin: -10px 0.5em 0 0;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .UtilityAction {
    margin: -10px 0.5em 0 0;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .UtilityAction {
    margin: -10px 0.5em 0 0;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .UtilityAction {
    margin: 0 0.5em 0 0;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .UtilityAction {
    margin: -10px 0.5em 0 0;
  }
}
.Topbar .Top_Menu .UtilityAction span {
  font-size: 1.8em;
}
.Topbar .Top_Menu .UtilityAction:hover {
  border: 0;
  background: #2C2470;
  color: white;
  outline: 0;
}
.Topbar .Top_Menu .UtilityAction:active {
  border: 0;
  background: #2C2470;
  color: white;
  outline: 0;
}
.Topbar .Top_Menu .UtilityAction:focus {
  border: 0;
  background: #2C2470;
  color: white;
  outline: 0;
}
.Topbar .Top_Menu .UtilityAction:focus-visible {
  border: 0;
  background: #2C2470;
  color: white;
  outline: 0;
}
.Topbar .Top_Menu .UtilityBar {
  background: none;
  border-bottom-left-radius: 14px;
  padding: 0;
  position: absolute;
  z-index: 4;
  width: 30%;
  top: 56px;
  right: 4px;
  display: none;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .UtilityBar {
    width: 30%;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .UtilityBar {
    width: 50%;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .UtilityBar {
    width: 50%;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .UtilityBar {
    width: 80%;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .UtilityBar {
    width: 30%;
  }
}
.Topbar .Top_Menu .UtilityBar .UtilityTriangle {
  float: right;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #ffffff transparent;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  margin: 0 0.4rem 0 0;
}
@media (max-width: 75em) {
  .Topbar .Top_Menu .UtilityBar .UtilityTriangle {
    margin: -13px 0.4rem 0 0;
  }
}
@media (max-width: 56.25em) {
  .Topbar .Top_Menu .UtilityBar .UtilityTriangle {
    margin: -13px 0.4rem 0 0;
  }
}
@media (max-width: 48em) {
  .Topbar .Top_Menu .UtilityBar .UtilityTriangle {
    margin: -13px 0.4rem 0 0;
  }
}
@media (max-width: 37.5em) {
  .Topbar .Top_Menu .UtilityBar .UtilityTriangle {
    margin: 4px 0.4rem 0 0;
  }
}
@media (min-width: 112.5em) {
  .Topbar .Top_Menu .UtilityBar .UtilityTriangle {
    margin: -13px 0.4rem 0 0;
  }
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder {
  background: #ffffff;
  width: 100%;
  float: left;
  border: 2px solid #eceaea;
  box-shadow: 0 16px 16px -12px #686767;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .CurrentUserInfo {
  float: left;
  width: 100%;
  background: none;
  padding: 0.4em;
  border-bottom: 1px solid #eceaea;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .CurrentUserInfo div {
  width: 65px;
  float: left;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .CurrentUserInfo div a img {
  padding: 3px;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .CurrentUserInfo p {
  color: #074BA7;
  font-size: 1em;
  line-height: 20px;
  margin: 0 0 5px;
  padding: 0;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .CurrentUserInfo em {
  color: #2C2470;
  font-size: 1em;
  margin: 1em 0;
  width: 100%;
  font-weight: bold;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .UtilityOption {
  float: left;
  width: 100%;
  padding: 0.4em 0.7em;
  border: 0;
  border-bottom: 1px solid #eceaea;
  background: none;
  color: #2C2470;
  text-align: left;
  position: relative;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .UtilityOption a {
  margin: 0 0 0 0.9em;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .UtilityOption span {
  position: absolute;
  right: 0;
}
.Topbar .Top_Menu .UtilityBar .UtilityBarOptionHolder .UtilityOption span:first-child {
  position: relative;
  left: 0;
}
.Topbar #SandwichMenu {
  display: none;
  width: 100%;
  height: auto;
  margin: 60px 0 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-top: 0;
  /* background: rgb(255,219,198);
  background: linear-gradient(0deg, rgba(255,219,198,1) 0%, rgba(255,255,255,1) 65%); */
}
@media (max-width: 75em) {
  .Topbar #SandwichMenu {
    height: auto;
    padding: 0;
    border-top: 0;
  }
}
@media (max-width: 56.25em) {
  .Topbar #SandwichMenu {
    height: auto;
    padding: 0;
    border-top: 0;
  }
}
@media (max-width: 48em) {
  .Topbar #SandwichMenu {
    height: auto;
    padding: 0;
    border-top: 0;
  }
}
@media (max-width: 37.5em) {
  .Topbar #SandwichMenu {
    height: 100vh;
    padding: 1rem 0;
    border-top: 1px solid #dee2e6;
  }
}
@media (min-width: 112.5em) {
  .Topbar #SandwichMenu {
    height: auto;
    padding: 0;
    border-top: 0;
  }
}
.Topbar .Main-menu {
  display: none;
}
.Topbar nav {
  height: 100vh;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.75);
}
.Topbar nav ul {
  margin: auto;
  position: absolute;
  background-color: #ffffff;
  padding: 0;
  width: 30%;
  height: 100vh;
  top: 0px;
}
@media (max-width: 75em) {
  .Topbar nav ul {
    width: 30%;
  }
}
@media (max-width: 56.25em) {
  .Topbar nav ul {
    width: 32%;
  }
}
@media (max-width: 48em) {
  .Topbar nav ul {
    width: 32%;
  }
}
@media (max-width: 37.5em) {
  .Topbar nav ul {
    width: 70%;
  }
}
@media (min-width: 112.5em) {
  .Topbar nav ul {
    width: 28%;
  }
}
.Topbar nav ul li {
  cursor: pointer;
  list-style: none;
  background: #fff;
  margin: 0.8em 0;
}
@media (max-width: 37.5em) {
  .Topbar nav ul li {
    margin: 0;
    border-bottom: 1px solid rgb(212, 212, 212);
  }
}
.Topbar nav ul li:hover {
  cursor: pointer;
  list-style: none;
}
.Topbar nav ul li img {
  position: relative;
  width: 38px;
  display: block;
  float: left;
  margin: 0 1em 0 0;
}
.Topbar nav ul li a {
  font-size: 1.2em;
  color: black;
  text-transform: inherit;
  position: relative;
  padding: 0.9rem 0;
  width: 100%;
  opacity: 0.8;
}
.Topbar nav ul li a:hover {
  opacity: 1;
  color: #545454;
  text-transform: inherit;
}
@media (max-width: 75em) {
  .Topbar nav ul li a:hover {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  .Topbar nav ul li a:hover {
    font-size: 50%;
  }
}
@media (max-width: 37.5em) {
  .Topbar nav ul li a:hover {
    font-size: 100%;
  }
}
@media (min-width: 112.5em) {
  .Topbar nav ul li a:hover {
    font-size: 1.5em;
  }
}
@media (max-width: 75em) {
  .Topbar nav ul li a {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  .Topbar nav ul li a {
    font-size: 50%;
  }
}
@media (max-width: 37.5em) {
  .Topbar nav ul li a {
    font-size: 1.07em;
  }
}
@media (min-width: 112.5em) {
  .Topbar nav ul li a {
    font-size: 1.5em;
  }
}
.Topbar nav ul .Topbar-MobileMenuLogoHolder {
  display: block;
  width: 45%;
  margin: 1em auto;
}
.Topbar nav #Mobile-wrapper {
  background: #ffffff none repeat scroll 0 0;
  border-bottom: 1px solid #ccc;
  display: none !important;
  left: 0;
  margin: 0 auto !important;
  padding: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999;
}
.Topbar nav .LogonUserMobile-Wrapper {
  height: auto;
  position: absolute;
  right: 0px;
  top: 0px;
  width: auto;
  padding: 0 0 3px 10px;
  display: none;
}
.Topbar nav .LogonUserMobile-holder {
  background: rgb(255, 255, 255) none repeat scroll 0 0;
  border-bottom: 1px solid #e9e9e9;
  border-bottom-left-radius: 20px;
  border-left: 1px solid #e9e9e9;
  padding: 3px 9px 3px 10px;
  position: absolute;
  right: 0;
  display: none;
}

header .header-logo .hanging-rope-menu {
  background: url("/images/svg/left-hanging-rope.svg") no-repeat left, url("/images/svg/right-hanging-rope.svg") no-repeat right, url("/images/svg/MainMenu-public-Topdecor.svg") no-repeat bottom;
}
@media (max-width: 75em) {
  header .header-logo img {
    margin: 0 0 1.5rem;
    width: 70% !important;
  }
}
@media (max-width: 56.25em) {
  header .header-logo img {
    margin: 0 0 1.5rem;
    width: 70% !important;
  }
}
@media (max-width: 48em) {
  header .header-logo img {
    margin: 0 0 1.5rem;
    width: 70% !important;
  }
}
@media (max-width: 37.5em) {
  header .header-logo img {
    margin: 0 0 1.5rem;
    width: 100% !important;
  }
}
@media (min-width: 75em) {
  header .header-logo img {
    margin: 0 0 1.5rem;
    width: 70% !important;
  }
}
@media (min-width: 112.5em) {
  header .header-logo img {
    margin: 0 0 1.7rem;
    width: 13.62em !important;
  }
}
@media (max-width: 75em) {
  header .header-logo img:last-child {
    width: 100%;
  }
}
@media (max-width: 56.25em) {
  header .header-logo img:last-child {
    width: 100%;
  }
}
@media (max-width: 48em) {
  header .header-logo img:last-child {
    width: 100%;
  }
}
@media (max-width: 37.5em) {
  header .header-logo img:last-child {
    width: 100%;
  }
}
@media (min-width: 75em) {
  header .header-logo img:last-child {
    width: 100%;
  }
}
@media (min-width: 112.5em) {
  header .header-logo img:last-child {
    width: 12.62em;
  }
}
header .header-logo .Main-menu-public ul {
  list-style: none;
  background-color: #ffffff;
  border-radius: 8px;
  border-bottom: 2px solid #c5b6ab;
}
@media (max-width: 75em) {
  header .header-logo .Main-menu-public ul {
    padding: 1rem 0;
  }
}
@media (max-width: 56.25em) {
  header .header-logo .Main-menu-public ul {
    padding: 1rem 0;
  }
}
@media (max-width: 48em) {
  header .header-logo .Main-menu-public ul {
    padding: 1rem 0;
  }
}
@media (max-width: 37.5em) {
  header .header-logo .Main-menu-public ul {
    padding: 0.3rem 0;
  }
}
@media (min-width: 75em) {
  header .header-logo .Main-menu-public ul {
    padding: 1rem 0;
  }
}
@media (min-width: 112.5em) {
  header .header-logo .Main-menu-public ul {
    padding: 1rem 0;
  }
}
header .header-logo .Main-menu-public ul li {
  border-right: 1px solid #ccc;
}
header .header-logo .Main-menu-public ul li:last-child {
  border-right: 0;
}
header .header-logo .Main-menu-public ul li a {
  color: #212529;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  text-shadow: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
@media (max-width: 37.5em) {
  header .header-logo .Main-menu-public ul li a {
    font-size: 13px;
  }
}
@media (max-width: 48em) {
  header .header-logo .Main-menu-public ul li a {
    font-size: 13px;
  }
}
@media (max-width: 56.25em) {
  header .header-logo .Main-menu-public ul li a {
    font-size: 13px;
  }
}
@media (max-width: 75em) {
  header .header-logo .Main-menu-public ul li a {
    font-size: 13px;
  }
}
@media (min-width: 75em) {
  header .header-logo .Main-menu-public ul li a {
    font-size: 13px;
  }
}
@media (min-width: 112.5em) {
  header .header-logo .Main-menu-public ul li a {
    font-size: 13px;
  }
}
header .header-logo .Main-menu-public ul li a:hover {
  text-shadow: 1px 1px 8px #0ba0a5;
  color: #1680a6;
  transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
}
header .mSlide .mSlideContent h2 {
  padding: 1.5rem 0 0 1.5rem;
}
header .mSlide .mSlideContent a {
  line-height: 18px;
  background: #5f9ed5;
  padding: 0.5em 1em;
  font-size: 1em;
  margin: 0.5em 0 0;
}
header .mSlide .mSlideContent a small {
  width: 100%;
  text-align: center;
  font-weight: normal;
}

.Admin-OrderMonitor > table {
  display: block;
}

.Admin-OrderMonitor > table thead {
  display: block;
}

.Admin-OrderMonitor > table tbody {
  display: block;
}

.Admin-OrderMonitor > table th {
  display: block;
}

.Admin-OrderMonitor > table td {
  display: block;
}

.Admin-OrderMonitor > table tr {
  display: block;
}

.Admin-OrderMonitor > table thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.Admin-OrderMonitor > table tr {
  border-top: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
  border-bottom: 0;
}

.Admin-OrderMonitor > table tr:nth-child(even) {
  background: #ffffff !important;
  color: #000000 !important;
}

.Admin-OrderMonitor > table tr:nth-child(odd) {
  background: #ececea !important;
  color: #000000 !important;
}

.Admin-OrderMonitor > table td { /* Behave  like a "row" */
  border: none;
  border-bottom: 0 !important;
  position: relative;
  padding-left: 50%;
}

.Admin-OrderMonitor > table td:before { /* Now like a table header */
  position: absolute; /* Top/left values mimic padding */
  border-bottom: 0 !important;
  left: 6px;
  width: 45%;
  padding-right: 10px;
  white-space: nowrap;
}

/*Label the data*/
.Admin-OrderMonitor > table td:nth-of-type(1):before {
  content: "";
  text-align: left;
  color: #2C2470;
  font-size: 1em;
  font-weight: bold;
  border: 0;
  padding: 10px 0 0;
}

.Admin-OrderMonitor > table td:nth-of-type(2):before {
  content: "Nombre";
  text-align: left;
  color: #000000;
  font-size: 0.8em;
  font-weight: bold;
  border: 0;
}

.Admin-OrderMonitor > table td:nth-of-type(3):before {
  content: "Dirección";
  text-align: left;
  color: #000000;
  font-size: 0.8em;
  font-weight: bold;
  border: 0;
}

.Admin-OrderMonitor > table td:nth-of-type(4):before {
  content: "Fecha";
  text-align: left;
  color: #000000;
  font-size: 0.8em;
  font-weight: bold;
  border: 0;
}

.Admin-OrderMonitor > table td:nth-of-type(5):before {
  content: "Estatus";
  text-align: left;
  color: #000000;
  font-size: 0.8em;
  font-weight: bold;
  border: 0;
}

.Admin-OrderMonitor > table td:nth-of-type(6):before {
  content: "Forma de pago";
  text-align: left;
  color: #000000;
  font-size: 0.8em;
  font-weight: bold;
  border: 0;
}

.Admin-OrderMonitor > table td:nth-of-type(7):before {
  content: "Total de la orden";
  text-align: left;
  color: #000000;
  font-size: 0.8em;
  font-weight: bold;
  border: 0;
}

.Admin-OrderMonitor > table td:nth-of-type(8):before {
  content: "Tipo de orden";
  text-align: left;
  color: #000000;
  font-size: 0.8em;
  font-weight: bold;
  border: 0;
}

.Admin-OrderMonitor > table td:nth-of-type(9):before {
  content: "Método de Pago";
  color: #000000;
  font-size: 0.9em;
  font-weight: bold;
  border: 0;
}

.Admin-OrderMonitor > table td:nth-of-type(10):before {
  content: "Detalle";
  text-align: left;
  color: #000000;
  font-size: 0.8em;
  font-weight: bold;
  border: 0;
}

footer {
  background-color: #f7f7f7;
}
footer .footer-gradient {
  background: rgb(5, 26, 51);
  background: linear-gradient(180deg, rgb(5, 26, 51) 24%, rgb(220, 180, 135) 57%, rgb(255, 255, 255) 95%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#051a33",endColorstr="#ffffff",GradientType=1);
}
footer .footer-holder {
  border-top: 2px solid #eceaea !important;
}
footer .footer-holder label {
  text-transform: uppercase;
  color: #666666;
}
footer .footer-holder ul {
  list-style: none;
  border-bottom-color: #eceaea !important;
  color: #666666;
  padding: 0;
}
footer .footer-holder ul li {
  padding: 0;
}
footer .footer-holder ul li a {
  color: #4d4d4d;
}
footer .footer-holder ul li a p svg {
  color: #e37171;
}
footer .footer-holder .social-holder a {
  color: #4d4d4d;
}
footer .footer-holder .social-holder a svg {
  color: #e9aa1f;
}
footer .footer-holder .social-holder a span {
  line-height: 12px;
}
footer .footer-holder p {
  border-top-color: #eceaea !important;
  color: #4d4d4d;
  font-size: 0.9em;
}
footer .footer-holder p span {
  color: #bddff2;
}
@media (max-width: 75em) {
  footer .footer-holder img {
    width: 85px;
    height: 40px;
  }
}
@media (max-width: 56.25em) {
  footer .footer-holder img {
    width: 85px;
    height: 40px;
  }
}
@media (max-width: 48em) {
  footer .footer-holder img {
    width: 85px;
    height: 40px;
  }
}
@media (max-width: 37.5em) {
  footer .footer-holder img {
    width: 60px;
    height: 38px;
  }
}
@media (min-width: 75em) {
  footer .footer-holder img {
    width: 85px;
    height: 40px;
  }
}
@media (min-width: 112.5em) {
  footer .footer-holder img {
    width: 85px;
    height: 40px;
  }
}
footer .footer-holder .footer-customerService {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.5rem;
  margin: 0 0 0.5rem;
}
@media (max-width: 75em) {
  footer .footer-holder .footer-customerService {
    background: none;
  }
}
@media (max-width: 56.25em) {
  footer .footer-holder .footer-customerService {
    background: none;
  }
}
@media (max-width: 48em) {
  footer .footer-holder .footer-customerService {
    background: none;
  }
}
@media (max-width: 37.5em) {
  footer .footer-holder .footer-customerService {
    background: #ffffff;
  }
}
@media (min-width: 75em) {
  footer .footer-holder .footer-customerService {
    background: none;
  }
}
@media (min-width: 112.5em) {
  footer .footer-holder .footer-customerService {
    background: none;
  }
}

/*NAV-WIZARD*/ /*////////////*/
.Nav-Wizard {
  background: #bddff2;
  border: 0;
  margin: auto;
}
@media (max-width: 75em) {
  .Nav-Wizard {
    padding: 1em 0.5em !important;
  }
}
@media (max-width: 56.25em) {
  .Nav-Wizard {
    padding: 1em 0.5em !important;
  }
}
@media (max-width: 48em) {
  .Nav-Wizard {
    padding: 1em 0.5em !important;
  }
}
@media (max-width: 37.5em) {
  .Nav-Wizard {
    padding: 0.8em 0 !important;
  }
}
@media (min-width: 75em) {
  .Nav-Wizard {
    padding: 1em 0.5em !important;
  }
}
@media (min-width: 112.5em) {
  .Nav-Wizard {
    padding: 1em 0.5em !important;
  }
}
.Nav-Wizard .Nav-Wizard-TagName {
  margin: 0;
}
.Nav-Wizard .Nav-Wizard-TagName a {
  float: left;
  font-size: 1em;
  color: #000000;
  text-decoration: none;
}
.Nav-Wizard .Nav-Wizard-TagName a:hover {
  color: #cccccc;
  text-decoration: none;
}
.Nav-Wizard .Nav-Wizard-TagName a:first-child {
  margin: 1em 0 0 0.5em;
}
.Nav-Wizard .Nav-Wizard-TagName a svg {
  font-size: 1.3em;
}
.Nav-Wizard .Nav-Wizard-TagName h3 {
  color: #0085cc;
  padding: 1rem 0 0;
  font-size: 1.3em;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
.Nav-Wizard .Nav-Wizard-TagName h3 a {
  margin: 0 0 0 2% !important;
}
.Nav-Wizard .Nav-Wizard-TagName label {
  color: #0085cc;
  padding: 0;
  margin: 0;
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
@media (max-width: 75em) {
  .Nav-Wizard .Nav-Wizard-TagName label {
    font-size: 1.2em;
  }
}
@media (max-width: 56.25em) {
  .Nav-Wizard .Nav-Wizard-TagName label {
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .Nav-Wizard .Nav-Wizard-TagName label {
    font-size: 1.2em;
  }
}
@media (max-width: 37.5em) {
  .Nav-Wizard .Nav-Wizard-TagName label {
    font-size: 1em;
  }
}
@media (min-width: 75em) {
  .Nav-Wizard .Nav-Wizard-TagName label {
    font-size: 1.2em;
  }
}
@media (min-width: 112.5em) {
  .Nav-Wizard .Nav-Wizard-TagName label {
    font-size: 1.2em;
  }
}
.Nav-Wizard .Nav-Wizard-TagName label a {
  margin: 0 0 0 2% !important;
}
.Nav-Wizard .Nav-Wizard-Buttons section {
  z-index: 1;
}
.Nav-Wizard .Nav-Wizard-Buttons section .Nav-Wizard-Buttons-Holder .Nav-Wizard-Buttons-visited {
  width: 24px;
  height: 24px;
  background-color: #ccdde7;
}
.Nav-Wizard .Nav-Wizard-Buttons section .Nav-Wizard-Buttons-Holder .Nav-Wizard-Buttons-visited a {
  color: #178fd6;
}
.Nav-Wizard .Nav-Wizard-Buttons section .Nav-Wizard-Buttons-Holder .Nav-Wizard-Buttons-ON {
  width: 24px;
  height: 24px;
  background-color: #ffffff;
}
.Nav-Wizard .Nav-Wizard-Buttons section .Nav-Wizard-Buttons-Holder .Nav-Wizard-Buttons-ON a {
  color: #178fd6;
  font-weight: bold;
}
.Nav-Wizard .Nav-Wizard-Buttons section .Nav-Wizard-Buttons-Holder .Nav-Wizard-Buttons-OFF {
  width: 24px;
  height: 24px;
  background-color: #178fd6;
  border: 1px solid #cccccc;
}
.Nav-Wizard .Nav-Wizard-Buttons section .Nav-Wizard-Buttons-Holder .Nav-Wizard-Buttons-OFF a {
  color: #ffffff;
}
.Nav-Wizard .Nav-Wizard-Buttons section .Nav-Wizard-Buttons-Holder a {
  color: #ffffff;
}
.Nav-Wizard .Nav-Wizard-Buttons #Progress-bar {
  position: absolute;
  width: 76%;
  height: 8px;
  background: #f0ecec;
  border-radius: 120px;
  right: 12%;
  top: 8px;
  border: 1px solid #ccc;
  z-index: 0;
}
.Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step1, .Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step2, .Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step3, .Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step4, .Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step5 {
  float: left;
  height: 8px;
  border-radius: 120px;
  margin: 0;
  background: #ccdde7; /* Old browsers */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ccdde7", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
}
.Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step1 {
  width: 32%; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ccdde7 0%, #ffffff 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step2 {
  width: 52%; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ccdde7 55%, #ffffff 86%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step3 {
  width: 65.5%; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ccdde7 55%, #ffffff 86%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step4 {
  width: 99%; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ccdde7 55%, #ffffff 86%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.Nav-Wizard .Nav-Wizard-Buttons #Progress-bar #Progress-bar-filled-step5 {
  width: 99%;
}

.Admin-holder {
  background: #f7f7f7;
}
@media (max-width: 75em) {
  .Admin-holder .SideBar {
    padding: 0 0.9em;
  }
}
@media (max-width: 56.25em) {
  .Admin-holder .SideBar {
    padding: 0 0.9em;
  }
}
@media (max-width: 48em) {
  .Admin-holder .SideBar {
    padding: 0 0.9em;
  }
}
@media (max-width: 37.5em) {
  .Admin-holder .SideBar {
    padding: 0 !important;
  }
}
@media (min-width: 75em) {
  .Admin-holder .SideBar {
    padding: 0 0.9em;
  }
}
@media (min-width: 112.5em) {
  .Admin-holder .SideBar {
    padding: 0 0.9em;
  }
}
.Admin-holder .SideBar button {
  background: none;
  border: 0;
}
.Admin-holder .SideBar button:hover {
  border: 0;
  background: none;
  outline: 0;
}
.Admin-holder .SideBar button:active {
  border: 0;
  background: none;
  outline: 0;
}
.Admin-holder .SideBar button:focus {
  border: 0;
  background: none;
  outline: 0;
}
.Admin-holder .SideBar button:focus-visible {
  border: 0;
  background: none;
  outline: 0;
}
.Admin-holder .SideBar ul {
  background: #f7f7f7;
}
@media (max-width: 75em) {
  .Admin-holder .SideBar ul {
    position: relative;
    z-index: 2;
    display: block;
    padding: 1.5rem 0 0 0 !important;
    box-shadow: none;
  }
}
@media (max-width: 56.25em) {
  .Admin-holder .SideBar ul {
    position: relative;
    z-index: 2;
    display: block;
    padding: 1.5rem 0 0 0 !important;
    box-shadow: none;
  }
}
@media (max-width: 48em) {
  .Admin-holder .SideBar ul {
    position: relative;
    z-index: 2;
    display: block;
    padding: 1.5rem 0 0 0 !important;
    box-shadow: none;
  }
}
@media (max-width: 37.5em) {
  .Admin-holder .SideBar ul {
    position: absolute;
    z-index: 2;
    display: none;
    padding: 0 !important;
    box-shadow: 0 16px 16px -12px #686767;
  }
}
@media (min-width: 75em) {
  .Admin-holder .SideBar ul {
    position: relative;
    z-index: 2;
    display: block;
    padding: 1.5rem 0 0 0 !important;
    box-shadow: none;
  }
}
@media (min-width: 112.5em) {
  .Admin-holder .SideBar ul {
    position: relative;
    z-index: 2;
    display: block;
    padding: 1.5rem 0 0 0 !important;
    box-shadow: none;
  }
}
.Admin-holder .SideBar ul li h4 {
  color: #2C2470;
  margin: 0;
  font-weight: bold;
  font-size: 20px;
}
.Admin-holder .SideBar ul li h4 span {
  color: #0085cc;
  margin: 0 0.4rem 0 0;
}
.Admin-holder .SideBar ul li ul {
  position: relative;
  padding: 0 !important;
  box-shadow: none;
  display: block;
}
.Admin-holder .SideBar ul li ul li a span {
  margin: 0 0.4rem 0 0;
}
.Admin-holder .SideBar ul li ul li a:hover {
  background: none !important;
}
.Admin-holder .SideBar ul li ul .list-group-item:hover {
  background-color: #f7f7f7;
}
.Admin-holder .SideBar ul li ul .list-group-item:hover .list-group-item-action span {
  color: #5f9ed5;
}
.Admin-holder .SideBar ul .actived {
  background: #0085cc !important;
}
.Admin-holder .SideBar ul .actived a {
  color: #ffffff;
  font-weight: bold;
}
.Admin-holder .SideBar ul .actived a:hover {
  background: none !important;
}
.Admin-holder .SideBarContent {
  position: relative;
  z-index: 1;
  background-color: #E6E6E6;
}
.Admin-holder .SideBarContent .file-input-container {
  position: relative;
  display: inline-block;
}
.Admin-holder .SideBarContent .file-input-container input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.Admin-holder .SideBarContent .file-input-container p {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  cursor: pointer;
  z-index: 1;
}
.Admin-holder input[type=checkbox] {
  float: left;
  margin: 0 0.1rem 0 0.5rem;
  text-align: center;
  width: 22px;
  height: 22px;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.Admin-holder input[type=checkbox]:after {
  content: " ";
  background-color: #ec923d;
  width: 100%;
  color: #fff;
  display: inline-block;
  visibility: visible;
}
.Admin-holder input[type=checkbox]:checked:after {
  content: "✔";
}

.navStickyMenu {
  position: relative !important;
  display: block;
}
@media (max-width: 75em) {
  .navStickyMenu {
    position: relative !important;
    background: #ffffff;
  }
}
@media (max-width: 56.25em) {
  .navStickyMenu {
    position: relative !important;
    background: #ffffff;
  }
}
@media (max-width: 48em) {
  .navStickyMenu {
    position: fixed !important;
    bottom: 0;
    z-index: 4;
    background: #ffffff;
    border-top: 1px solid #cccccc;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 37.5em) {
  .navStickyMenu {
    position: fixed !important;
    bottom: 0;
    z-index: 4;
    background: #5f9ed5;
    border-top: 1px solid #cccccc;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 112.5em) {
  .navStickyMenu {
    position: relative !important;
    background: #ffffff;
  }
}
.navStickyMenu .navContent {
  position: relative;
}
@media (max-width: 75em) {
  .navStickyMenu .navContent .header-logo {
    display: block;
  }
}
@media (max-width: 56.25em) {
  .navStickyMenu .navContent .header-logo {
    display: block;
  }
}
@media (max-width: 48em) {
  .navStickyMenu .navContent .header-logo {
    display: none;
  }
}
@media (max-width: 37.5em) {
  .navStickyMenu .navContent .header-logo {
    display: none;
  }
}
@media (min-width: 112.5em) {
  .navStickyMenu .navContent .header-logo {
    display: block;
  }
}
.navStickyMenu .navContent ul {
  list-style: none;
  padding: 0.43rem 0 0;
}
.navStickyMenu .navContent ul li {
  margin: 0 0 1rem;
}
@media (max-width: 75em) {
  .navStickyMenu .navContent ul li {
    margin: 0 0 1rem;
  }
}
@media (max-width: 56.25em) {
  .navStickyMenu .navContent ul li {
    margin: 0 0 1rem;
  }
}
@media (max-width: 48em) {
  .navStickyMenu .navContent ul li {
    margin: 0;
  }
}
@media (max-width: 37.5em) {
  .navStickyMenu .navContent ul li {
    margin: 0;
  }
}
@media (min-width: 112.5em) {
  .navStickyMenu .navContent ul li {
    margin: 0 0 1rem;
  }
}
.navStickyMenu .navContent ul li a {
  display: flex;
  color: #000000;
}
@media (max-width: 75em) {
  .navStickyMenu .navContent ul li a {
    text-align: left;
    color: black;
    display: flex;
  }
}
@media (max-width: 56.25em) {
  .navStickyMenu .navContent ul li a {
    text-align: left;
    color: black;
    display: flex;
  }
}
@media (max-width: 48em) {
  .navStickyMenu .navContent ul li a {
    text-align: center;
    color: black;
    display: block;
  }
}
@media (max-width: 37.5em) {
  .navStickyMenu .navContent ul li a {
    text-align: center;
    color: white;
    display: block;
  }
}
@media (min-width: 112.5em) {
  .navStickyMenu .navContent ul li a {
    text-align: left;
    color: black;
    display: flex;
  }
}
.navStickyMenu .navContent ul li a .navLabel {
  cursor: pointer;
}
@media (max-width: 37.5em) {
  .navStickyMenu .navContent ul li a .navLabel {
    width: 100%;
    margin: 0 0 0.4rem !important;
  }
}
.navStickyMenu .navContent ul li a span {
  color: #5f9ed5;
  margin: 0 1rem 0 0;
}
@media (max-width: 56.25em) {
  .navStickyMenu .navContent ul li a span {
    color: #5f9ed5;
  }
}
@media (max-width: 48em) {
  .navStickyMenu .navContent ul li a span {
    color: #ffffff;
  }
}
@media (max-width: 37.5em) {
  .navStickyMenu .navContent ul li a span {
    color: #ffffff;
    margin: 0;
  }
}
@media (min-width: 112.5em) {
  .navStickyMenu .navContent ul li a span {
    color: #5f9ed5;
  }
}

/*HomePreviewItem*/
.Preview-Item {
  margin: 1em auto;
  padding: 0;
  width: 100%;
}
.Preview-Item figure {
  overflow: hidden;
}
.Preview-Item figure a img {
  width: 100%;
  height: auto;
  opacity: 0.8;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.Preview-Item figure a img:hover {
  opacity: 1;
  border-radius: 8px;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.Preview-Item div h5 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.Preview-Item div h5 a {
  color: #000000;
}
.Preview-Item div h5 a:hover {
  color: #0085cc;
}
.Preview-Item div p {
  font-family: helvetica;
  font-size: 1em;
  line-height: 1.58em;
  padding: 0;
  width: 100%;
  color: #000000;
  margin: 1em 0 0;
}
.Preview-Item hr {
  margin: 0;
}
@media (max-width: 37.5em) {
  .Preview-Item {
    margin: 0 0 1.1em;
  }
}

.Card-Event {
  transition: transform 1s;
  padding: 1rem;
  margin: 0 0 1rem;
}
.Card-Event:hover {
  transform: translateY(-5px);
}
@media (max-width: 75em) {
  .Card-Event time img {
    width: 187px;
    height: 20px;
  }
}
@media (max-width: 56.25em) {
  .Card-Event time img {
    width: 187px;
    height: 20px;
  }
}
@media (max-width: 48em) {
  .Card-Event time img {
    width: 187px;
    height: 20px;
  }
}
@media (max-width: 37.5em) {
  .Card-Event time img {
    width: 294px;
    height: 32px;
  }
}
@media (min-width: 75em) {
  .Card-Event time img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 112.5em) {
  .Card-Event time img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 75em) {
  .Card-Event img {
    width: 187px;
    height: 221px;
  }
}
@media (max-width: 56.25em) {
  .Card-Event img {
    width: 187px;
    height: 221px;
  }
}
@media (max-width: 48em) {
  .Card-Event img {
    width: 187px;
    height: 221px;
  }
}
@media (max-width: 37.5em) {
  .Card-Event img {
    width: 294px;
    height: 348px;
  }
}
@media (min-width: 75em) {
  .Card-Event img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 112.5em) {
  .Card-Event img {
    width: 100%;
    height: auto;
  }
}
.Card-Event h3 {
  font-weight: bold;
  font-size: 1.2em;
}
@media (max-width: 75em) {
  .Card-Event h3 {
    font-size: 1.3em;
  }
}
@media (max-width: 56.25em) {
  .Card-Event h3 {
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .Card-Event h3 {
    font-size: 1.2em;
  }
}
@media (max-width: 37.5em) {
  .Card-Event h3 {
    font-size: 1.3em;
  }
}
@media (min-width: 75em) {
  .Card-Event h3 {
    font-size: 1.3em;
  }
}
@media (min-width: 112.5em) {
  .Card-Event h3 {
    font-size: 1.5em;
  }
}
.Card-Event .Info {
  padding: 1rem;
  position: relative;
}
.Card-Event p {
  margin-top: 1rem;
  word-break: break-all;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1.2em;
}
@media (max-width: 75em) {
  .Card-Event p {
    font-size: 14px;
  }
}
@media (max-width: 56.25em) {
  .Card-Event p {
    font-size: 14px;
  }
}
@media (max-width: 48em) {
  .Card-Event p {
    font-size: 13px;
  }
}
@media (max-width: 37.5em) {
  .Card-Event p {
    font-size: 1.2em;
  }
}
@media (min-width: 75em) {
  .Card-Event p {
    font-size: 14px;
  }
}
@media (min-width: 112.5em) {
  .Card-Event p {
    font-size: 14px;
  }
}
.Card-Event .Calendar-ring {
  border-top: 1px solid #0e559f;
  border-bottom: 2px solid #e9aa1f;
  border-left: 1px solid #0e559f;
  border-right: 1px solid #0e559f;
}
.Card-Event .Calendar-ring h5, .Card-Event .Calendar-ring h6 {
  color: #0e559f;
}
.Card-Event .Calendar-ring h1 {
  color: #e9aa1f;
}

.TemplateItems-Container {
  font-family: "Montserrat", sans-serif;
  margin: 1em 0;
  padding: 1em 0;
}
.TemplateItems-Container header {
  width: 100%;
}
.TemplateItems-Container header svg {
  float: left;
  font-size: 1.3em;
  color: #f37732;
}
.TemplateItems-Container header h3 {
  color: #000000;
  font-weight: bold;
}
@media (max-width: 75em) {
  .TemplateItems-Container header h3 {
    font-size: 2.1em;
    padding-left: 1rem;
  }
}
@media (max-width: 56.25em) {
  .TemplateItems-Container header h3 {
    font-size: 1.8em;
    padding-left: 1rem;
  }
}
@media (max-width: 48em) {
  .TemplateItems-Container header h3 {
    font-size: 1.8em;
    padding-left: 1rem;
  }
}
@media (max-width: 37.5em) {
  .TemplateItems-Container header h3 {
    font-size: 1.5em;
    padding-left: 0.8rem;
  }
}
@media (min-width: 75em) {
  .TemplateItems-Container header h3 {
    font-size: 2.1em;
    padding-left: 1rem;
  }
}
@media (min-width: 112.5em) {
  .TemplateItems-Container header h3 {
    font-size: 2.1em;
    padding-left: 1rem;
  }
}
.TemplateItems-Container header aside {
  border-top: 1px solid #ccdde7;
}
.TemplateItems-Container header aside p {
  margin: 0.2em 1em;
}
.TemplateItems-Container header aside em {
  margin: 0;
  background: #ccdde7;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0.2em 1em;
}
.TemplateItems-Container .Template-Item-content {
  text-align: justify;
  margin: 1rem 0 0;
}
.TemplateItems-Container .Template-Item-content .CKE-ItemWrapper {
  padding: 0 1em;
}
.TemplateItems-Container .Template-Item-content .CKE-ItemWrapper h3 {
  font-size: 2.1em;
  color: #0085cc;
  font-weight: bold;
}
@media (max-width: 37.5em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper h3 {
    font-size: 1.7em;
  }
}
.TemplateItems-Container .Template-Item-content .CKE-ItemWrapper strong {
  font-weight: bold;
}
.TemplateItems-Container .Template-Item-content .CKE-ItemWrapper p {
  line-height: 35px;
}
@media (max-width: 75em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper p {
    font-size: 1.2em;
  }
}
@media (max-width: 56.25em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper p {
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper p {
    font-size: 1.2em;
  }
}
@media (max-width: 37.5em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper p {
    font-size: 1em;
  }
}
@media (min-width: 75em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper p {
    font-size: 1.2em;
  }
}
@media (min-width: 112.5em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper p {
    font-size: 1.2em;
  }
}
.TemplateItems-Container .Template-Item-content .CKE-ItemWrapper .img-medium {
  float: left;
}
@media (max-width: 75em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper .img-medium {
    width: 30%;
  }
}
@media (max-width: 56.25em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper .img-medium {
    width: 30%;
  }
}
@media (max-width: 48em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper .img-medium {
    width: 30%;
  }
}
@media (max-width: 37.5em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper .img-medium {
    width: 100%;
  }
}
@media (min-width: 75em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper .img-medium {
    width: 30%;
  }
}
@media (min-width: 112.5em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper .img-medium {
    width: 30%;
  }
}
.TemplateItems-Container .Template-Item-content .CKE-ItemWrapper ol {
  float: left;
  font-size: 1.1em;
  color: #2C2470;
  font-weight: 500;
}
@media (max-width: 75em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper ol {
    padding-left: 2.5rem;
  }
}
@media (max-width: 56.25em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper ol {
    padding-left: 2.5rem;
  }
}
@media (max-width: 48em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper ol {
    padding-left: 2.5rem;
  }
}
@media (max-width: 37.5em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper ol {
    padding-left: 1.5rem;
  }
}
@media (min-width: 75em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper ol {
    padding-left: 2.5rem;
  }
}
@media (min-width: 112.5em) {
  .TemplateItems-Container .Template-Item-content .CKE-ItemWrapper ol {
    padding-left: 2.5rem;
  }
}

.Template-PreviewItems {
  font-family: "Montserrat", sans-serif;
}
.Template-PreviewItems label {
  margin: 0.5em 0 1em;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: black;
}
.Template-PreviewItems article {
  cursor: pointer;
  border: 3px solid transparent;
}
.Template-PreviewItems article header h4 {
  font-size: 1.2em;
}
.Template-PreviewItems article header h4 a {
  color: #0085cc;
}
.Template-PreviewItems article header h4 a span {
  color: #e9aa1f;
}
.Template-PreviewItems article figure {
  overflow: hidden;
}
.Template-PreviewItems article figure img {
  box-shadow: 0 8px 0 -4px #0085cc;
}
.Template-PreviewItems article p {
  line-height: 35px;
}
.Template-PreviewItems article .ViewMore-Btn {
  background-color: #0085cc;
  padding: 6px 8px;
  color: white;
  font-size: 1em;
}
.Template-PreviewItems article:hover {
  background-color: #fafafa;
  border: 3px solid #efefef;
}
.Template-PreviewItems article:hover header h4 a {
  color: #0085cc;
}
.Template-PreviewItems article:hover figure img {
  opacity: 1;
  border-radius: 8px;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.detailsHolder .detailsTitle {
  color: #2C2470;
  font-family: "Montserrat", sans-serif;
  margin: auto;
  padding: 2em 0 0.5em;
  font-size: 2.2em;
}
.detailsHolder .detailsPrice {
  font-size: 2.8em;
  color: #2C2470;
  float: left;
  margin: 0 0 0.5em;
  padding: 0;
}
.detailsHolder .detailsPrice em {
  font-size: 0.5em;
  margin: -10px 0.5em 0 0;
  float: left;
  color: #5f9ed5;
}
.detailsHolder .detailsLabels label span {
  color: #6ea7d9;
}
.detailsHolder .detailsLabels div {
  padding: 0 1em 1em;
}
.detailsHolder .detailsLabels div h5 {
  font-size: 2em;
  font-weight: bold;
  color: #5d59b4;
}
.detailsHolder .Details-CKEditorWrapper {
  width: 100%;
  margin: 0;
  padding: 1em;
  text-align: justify;
}
.detailsHolder .Details-CKEditorWrapper .detail-overview {
  margin: auto;
  width: 100%;
  padding: 0.5rem 1em;
  /*background-image: repeating-linear-gradient(0deg, #f1e9ce, #f1e9ce 2px, transparent 2px, transparent);
  background-size: 32px 32px;*/
  background-color: #fbfae9;
}
.detailsHolder .Details-CKEditorWrapper .detail-overview div {
  width: 100%;
  margin: 0 0 2em;
}
.detailsHolder .Details-CKEditorWrapper .detail-overview div h4 {
  font-size: 1em;
  color: #2C2470;
  display: flex;
  align-items: center;
}
.detailsHolder .Details-CKEditorWrapper .detail-overview div h4 span {
  font-size: 1.2em;
  margin: 0 0.5rem 0 0;
  color: #d43f0e;
}
.detailsHolder .Details-CKEditorWrapper .detail-overview div p {
  padding: 0;
  line-height: 34px;
}

.Product_Store-Preview {
  margin: 0.5rem 0;
  padding: 0 !important;
}
.Product_Store-Preview .Promotion-Product_Provider-Holder {
  padding-top: 1rem !important;
  box-shadow: none;
  background: #ffffff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.Product_Store-Preview .Promotion-Product_Provider-Holder:hover {
  background: #eceaea;
}
.Product_Store-Preview .Promotion-Product_Provider-Holder h3 {
  height: 50px !important;
  overflow: hidden;
  font-size: 1.3em;
}
.Product_Store-Preview .Promotion-Product_Provider-Holder h3 a {
  color: #343434 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 26px;
}
.Product_Store-Preview .Promotion-Product_Provider-Holder .ImgProduct_Store-Preview {
  background: #ffffff;
  width: 100%;
  margin: auto auto 0.8em;
  padding: 0;
  cursor: pointer;
  text-align: center;
  opacity: 1;
}
.Product_Store-Preview .Promotion-Product_Provider-Holder .ImgProduct_Store-Preview:hover {
  opacity: 0.8;
}
.Product_Store-Preview .Promotion-Product_Provider-Holder p {
  color: #0f0f9e;
  font-size: 1.3em;
}
.Product_Store-Preview .Promotion-Product_Provider-Holder p em {
  font-style: normal;
  font-size: 0.9em;
}

#StoreProductBilling .modal-body {
  /* .ribbon-wrapper-green {
      width: 85px;
      height: 88px;
      overflow: hidden;
      position: absolute;
      top: -3px;
      right: -3px;
    }

    .ribbon-green {
      font: bold 15px Sans-Serif;
      color: #333;
      text-align: center;
      text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
      -webkit-transform: rotate(45deg);
      -moz-transform:    rotate(45deg);
      -ms-transform:     rotate(45deg);
      -o-transform:      rotate(45deg);
      transform:      rotate(45deg);
      position: relative;
      padding: 7px 0;
      left: -5px;
      top: 15px;
      width: 120px;
      background-color: #BFDC7A;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#BFDC7A), to(#8EBF45)); 
      background-image: -webkit-linear-gradient(top, #BFDC7A, #8EBF45); 
      background-image:    -moz-linear-gradient(top, #BFDC7A, #8EBF45); 
      background-image:     -ms-linear-gradient(top, #BFDC7A, #8EBF45); 
      background-image:      -o-linear-gradient(top, #BFDC7A, #8EBF45); 
      color: #6a6340;
      -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
      -moz-box-shadow:    0px 0px 3px rgba(0,0,0,0.3);
      box-shadow:         0px 0px 3px rgba(0,0,0,0.3);
    }

    .ribbon-green:before, .ribbon-green:after {
      content: "";
      border-top:   3px solid #6e8900;   
      border-left:  3px solid transparent;
      border-right: 3px solid transparent;
      position:absolute;
      bottom: -3px;
    }

    .ribbon-green:before {
      left: 0;
    }
    .ribbon-green:after {
      right: 0;
    }​ */
}
#StoreProductBilling .modal-body small {
  color: #00b700;
}
#StoreProductBilling .modal-body .SessionCountDown-holder {
  border: 1px solid #00b700;
}
#StoreProductBilling .modal-body .SessionCountDown-holder .userProfile-holder {
  background-color: #f0be61;
  color: #fff;
  padding: 0.6rem 0.4rem;
}
#StoreProductBilling .modal-body .SessionCountDown-holder .userProfile-holder .imageProfile {
  width: 42px;
  height: 42px;
  background: #fff;
}

.Widget-Shopping {
  display: block;
  margin: auto;
  padding: 0.5em 0.5em 1em 0.5em;
  background-color: #fafafa;
  opacity: 1;
  background-size: 10px 10px;
  background-image: repeating-linear-gradient(45deg, #E5E5F7 0, #E5E5F7 1px, #fafafa 0, #fafafa 50%);
}
.Widget-Shopping h5 {
  font-family: "Montserrat", sans-serif;
  color: #2C2470;
  font-size: 16px;
  width: 100%;
  margin: 0;
  padding: 0 0.5rem 0.2em 0;
  text-align: right;
}
.Widget-Shopping h5 span {
  color: #27990c;
  font-size: 1.5em;
  margin: 0;
}
.Widget-Shopping #update-message {
  font-family: helvetica;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0.3rem 0;
}
.Widget-Shopping .update-message {
  margin: 0 0 0.4rem;
}
.Widget-Shopping .Widget-Shopping-ProductItem {
  margin: 0 0 0.3rem 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 0;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.Widget-Shopping .Widget-Shopping-ProductItem h4 {
  margin: 0;
  font-size: 18px;
}
.Widget-Shopping .Widget-Shopping-ProductItem span {
  margin: 0;
  font-size: 16px;
}
.Widget-Shopping .Widget-Shopping-ProductItem input::-webkit-outer-spin-button,
.Widget-Shopping .Widget-Shopping-ProductItem input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.Widget-Shopping .Widget-Shopping-ProductItem input[type=number] {
  -moz-appearance: textfield;
  margin: 0;
  border: 1px solid #dee2e6 !important;
}
.Widget-Shopping .Widget-Shopping-ProductItem button {
  border: 0;
  background: none;
}
.Widget-Shopping .Widget-Shopping-ProductItem button i {
  margin: 0;
  background: #ff3547;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 2px;
}
.Widget-Shopping .Widget-Shopping-ProductItem button p {
  margin: 0;
}
.Widget-Shopping .Widget-Shopping-ProductItem .Widget-Shopping-ProductItem-typeIcon {
  color: #ffa500;
  font-size: 22px;
}
.Widget-Shopping .Widget-Shopping-PaymentMethod {
  list-style: none;
}
.Widget-Shopping .Widget-Shopping-PaymentMethod li div {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.Widget-Shopping .Widget-Shopping-PaymentMethod li div:hover {
  border: 1px solid #f37732;
  background-color: #fafafa;
}
.Widget-Shopping .Widget-Shopping-PaymentMethod li div:active {
  border: 1px solid #27990c;
  background-color: rgb(206, 245, 255);
}
.Widget-Shopping .Widget-Shopping-PaymentMethod li div div {
  border: 0 !important;
  background: none !important;
  cursor: pointer;
}
.Widget-Shopping .Widget-Shopping-PaymentMethod li div div label {
  cursor: pointer;
}
.Widget-Shopping .Widget-Shopping-PaymentMethod li div div img {
  width: 100% !important;
}
.Widget-Shopping table {
  display: block;
}
.Widget-Shopping table thead {
  display: block;
}
.Widget-Shopping table thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.Widget-Shopping table tbody {
  display: block;
}
.Widget-Shopping table th {
  display: block;
}
.Widget-Shopping table td {
  display: block;
}
.Widget-Shopping table tr {
  display: block;
  border: 0;
}
.Widget-Shopping table tr:nth-child(even) {
  background: #fafafa;
  color: #000000;
  border: 1px solid #dddddd;
}
.Widget-Shopping table tr:nth-child(odd) {
  background: #ffffff;
  color: #545454;
  margin: 0 0 0.6em;
  border: 1px solid #dddddd;
}
.Widget-Shopping table td {
  border: none;
  border-bottom: 0;
  position: relative;
  padding-left: 25%;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  /*Label the data*/
}
.Widget-Shopping table td input[type=number]::-webkit-inner-spin-button,
.Widget-Shopping table td input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.Widget-Shopping table td input[type=number] {
  -moz-appearance: textfield;
}
.Widget-Shopping table td:before {
  position: absolute;
  border-bottom: 0;
  left: 6px;
  width: 45%;
  padding-right: 10px;
  white-space: nowrap;
}
.Widget-Shopping table td:nth-of-type(2):before {
  content: "Producto:";
  color: #000000;
  border: 0;
  font-size: 1em;
  font-weight: bold;
  padding: 0;
  text-align: left;
}
.Widget-Shopping table td:nth-of-type(3):before {
  content: "Precio:";
  color: #000000;
  border: 0;
  font-size: 1em;
  font-weight: bold;
  padding: 0;
  text-align: left;
}
.Widget-Shopping table td:nth-of-type(4):before {
  content: "Cantidad:";
  color: #000000;
  border: 0;
  font-size: 1em;
  font-weight: bold;
  padding: 0;
  text-align: left;
}

#PromoterCode-tooltip {
  display: none;
}
#PromoterCode-tooltip img {
  margin-bottom: -11px;
}

.Widget-Shopping-code-ToolTip {
  background-color: #2C2470;
}

.PromoterCode-tooltip-action button {
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  line-height: 10px;
  text-align: center;
  padding: 1px;
  font-size: 11px;
  font-weight: bold;
  background: #ffc24d;
  color: #a76c18;
  border: 3px solid #782e89;
}

.PromoterCode-tooltip-action button:hover {
  background: white;
  color: #2C2470;
  border: 3px solid #ffc24d;
}

.PromoterCode-tooltip-caption small {
  color: white;
}

.Widget-Shopping-empty {
  margin: 0.5em auto;
  padding: 1rem 0;
  width: 50%;
  text-align: center;
}
.Widget-Shopping-empty span {
  font-size: 4em;
  color: #989898;
}
.Widget-Shopping-empty p {
  width: 100%;
  margin: 0.5em 0 0;
  font-size: 0.8em;
  color: #545454;
}

.Widget-Shopping-Price-Holder {
  margin: auto;
  padding: 0 0 0.5em !important;
}
.Widget-Shopping-Price-Holder ul {
  padding: 0;
  margin: 0.2rem 0 0;
  border: 0;
}
.Widget-Shopping-Price-Holder ul ul {
  background: none;
  color: #000000;
  font-size: 16px;
  line-height: 16px;
  list-style-type: none;
}

.SearchButton-popupAction {
  float: left;
  margin: 0 0.3rem 0 0;
  background: none;
  border: 0;
  width: 45px;
  height: 38px;
}
.SearchButton-popupAction span {
  font-size: 2em;
  color: #000000;
}

.SearchMobileToggleAction {
  display: block;
  float: right;
  border: 0;
  background: none;
  height: 38px;
  margin: 0 0.6rem 0 0;
}

.Search_wrapper {
  z-index: 100;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100vh;
  margin: auto;
  padding: 0 !important;
  display: none;
  background: rgb(41, 41, 41);
  background: linear-gradient(0deg, rgba(41, 41, 41, 0) 0%, #ccdde7 86%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#292929",endColorstr="#ccdde7",GradientType=1);
}

.Search_wrapper header {
  margin: 1rem 0 0.5rem;
  display: block !important;
}
.Search_wrapper header h3 {
  color: #545454;
  font-size: 1.5em;
  font-family: manjari;
}
.Search_wrapper header h3 span {
  color: #e9aa1f !important;
  font-size: 0.9em !important;
  margin: -5px 0 0;
}
.Search_wrapper header span {
  color: #545454;
  font-size: 1.5em;
}

.SearchCloseButton-popupAction {
  margin: 0;
  border: 0;
  background: none;
  padding-left: 0 !important;
}

.Search_wrapper-innerRight {
  float: left;
  width: 100%;
  margin: auto;
  border: 0;
}

#Search_Text-field {
  float: right;
  width: 100%;
  height: auto;
  margin: 0;
}

#Search-Buttom {
  position: absolute;
  right: 3%;
  width: 35px;
  height: 50px;
  margin: 0;
  background: #ffffff;
  padding: 0 !important;
}
@media (max-width: 75em) {
  #Search-Buttom {
    box-shadow: none;
  }
}
@media (max-width: 56.25em) {
  #Search-Buttom {
    box-shadow: none;
  }
}
@media (max-width: 48em) {
  #Search-Buttom {
    box-shadow: none;
  }
}
@media (max-width: 37.5em) {
  #Search-Buttom {
    box-shadow: 0 9px 16px -12px #686767;
  }
}
@media (min-width: 112.5em) {
  #Search-Buttom {
    box-shadow: none;
  }
}

#Search-Buttom a {
  color: #e9aa1f;
  font-size: 1.3em;
  margin-top: 9px;
  float: left;
  text-align: center;
  width: 100%;
}

#Search-Buttom a:active {
  color: #545454;
  font-size: 1.3em;
  margin-top: 9px;
  float: left;
  text-align: center;
  width: 100%;
}

#Search_Text-field-bar {
  font-size: 1em;
  float: left;
  color: #000000;
  border: 0;
  height: 50px;
  margin: 0;
  width: 100%;
  padding-left: 0.5rem;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 9px 16px -12px #686767;
}
@media (max-width: 75em) {
  #Search_Text-field-bar {
    width: 100%;
  }
}
@media (max-width: 56.25em) {
  #Search_Text-field-bar {
    width: 100%;
  }
}
@media (max-width: 48em) {
  #Search_Text-field-bar {
    width: 100%;
  }
}
@media (max-width: 37.5em) {
  #Search_Text-field-bar {
    width: 90%;
  }
}
@media (min-width: 112.5em) {
  #Search_Text-field-bar {
    width: 100%;
  }
}

.ui-widget-content {
  border: 0 !important;
  background: #ffffff;
  color: #222;
  border-radius: 0 !important;
}

.ui-widget-content > ul li:first a {
  color: #e9aa1f !important;
}

.ui-menu .ui-menu-item {
  border-bottom: 1px solid #cccccc !important;
}

.SearchResults {
  margin: 0;
}
.SearchResults header span {
  color: #2C2470;
}
.SearchResults header h5 {
  margin: 0;
}
.SearchResults header h5 span {
  color: #2C2470;
}
.SearchResults section .SearchResults-labels {
  background-color: #0085cc;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom: 6px solid #4b4895;
  padding: 0.5em;
}
.SearchResults section .SearchResults-labels label {
  color: #ffffff;
  margin: 0;
}
.SearchResults section .Result-list .ResultElement {
  border-bottom: 3px solid #dee2e6;
}
.SearchResults section .Result-list .ResultElement a {
  color: #000000;
  margin: 0.5em 0 !important;
  padding: 0.5em 0;
}
.SearchResults section .Result-list .ResultElement a p {
  margin: 0 !important;
  text-align: center;
  font-size: 1.2em;
}
.SearchResults section .Result-list .ResultElement a span {
  margin: 0 !important;
}
.SearchResults section .Result-list .ResultElement:nth-of-type(even) {
  background-color: #e9e9e9;
}
.SearchResults section .Result-list .ResultElement:nth-of-type(odd) {
  background-color: #ffffff;
}
.SearchResults section .Result-list .ResultElement:hover {
  background-color: #e4e4e4;
}

.UserComponent .ComponentData {
  background-color: #fafafa;
}
.UserComponent .ComponentData label {
  margin: 0;
  color: #946c14;
}
.UserComponent .ComponentData p {
  margin: 0;
}
.UserComponent .ComponentData .ProfileData .ProfilePicture {
  margin: auto;
  text-align: center;
  border: 0;
  width: 65px;
}
.UserComponent .ComponentData .ProfileData .ProfilePicture img {
  margin: 0;
}
.UserComponent .ComponentData .ModifyUser a {
  margin: 0;
}
.UserComponent .ComponentData .ModifyUser a i {
  color: #c9962b;
  font-size: 1.3em;
}

.Holder-AdminProducts-Filters {
  margin: 0;
  float: left;
  width: 100%;
  padding: 0 1%;
}
.Holder-AdminProducts-Filters label {
  margin: 1% 1% 0;
  width: 98%;
  padding: 0 0 10px;
}
.Holder-AdminProducts-Filters form {
  margin: 0 1%;
}
.Holder-AdminProducts-Filters form input {
  padding: 0.5% 1%;
  border: 1px solid #ccc;
  background: #ffffff;
  border-radius: 4px;
}
.Holder-AdminProducts-Filters form button {
  margin: 0;
  background: #2C2470;
  color: #ffffff;
  padding: 0.5% 1em;
  border-radius: 4px;
}
.Holder-AdminProducts-Filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.Holder-AdminProducts-Filters ul li span {
  margin: 0 0 3px;
  width: 100%;
  float: left;
  padding: 0 0 0 2%;
  font-size: 0.9em;
  color: #2C2470;
  font-weight: bold;
}
.Holder-AdminProducts-Filters ul li span:first-child {
  float: none;
  color: #ffffff;
}
.Holder-AdminProducts-Filters ul li div {
  margin: 0;
}
.Holder-AdminProducts-Filters ul li div div {
  margin: 0.5rem 0;
  background: none;
  border-radius: 4px;
  padding: 0.5em 0;
}
.Holder-AdminProducts-Filters ul li div div:first-child {
  background: #2c2470;
  position: relative;
  margin: 0;
  padding: 0.3rem 0 0.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.Holder-AdminProducts-Filters ul li div div form {
  display: flex;
}
.Holder-AdminProducts-Filters ul li div div form input {
  float: left;
  width: 40%;
  margin: 0 0 0 0.3rem;
  border: 1px solid #ccc;
  background: #f7f7f7;
  padding: 1.5%;
  border-radius: 4px;
}
.Holder-AdminProducts-Filters ul li div div form button {
  margin: 0 0 0 0.3rem;
  border: 0;
  background: #fff;
  color: #2C2470;
}
.Holder-AdminProducts-Filters ul li div div div {
  border: 0;
  margin: 0;
  padding: 0;
  width: 40%;
  position: absolute;
  right: 5px;
  top: 7px;
  background: none;
}
.Holder-AdminProducts-Filters ul li div div div input {
  border-left: 1px solid #ccc;
  border-top: 0;
  height: 25px;
  width: 75% !important;
  float: left;
}
.Holder-AdminProducts-Filters ul li div div div button {
  height: 25px;
  width: 20%;
  border: 0;
  float: right;
  background: #5076ff;
  color: #ffffff;
}
.Holder-AdminProducts-Filters ul li ul {
  margin: 0;
  padding: 0 0 0 0.5%;
  list-style: none;
  width: 100%;
  border: 0;
}
.Holder-AdminProducts-Filters ul li ul li {
  margin: 0 0 0.5rem;
  padding: 0 0 0 0.5%;
  list-style: none;
  width: 100%;
  border: 0;
  height: auto;
  box-shadow: none;
}
.Holder-AdminProducts-Filters ul li ul li a {
  float: right;
  margin: 0 2%;
  font-size: 1.3em;
}
.Holder-AdminProducts-Filters ul li ul li a span {
  color: #2C2470;
}
.Holder-AdminProducts-Filters ul li ul li a span:hover {
  color: #f37732;
}
.Holder-AdminProducts-Filters ul li ul li span {
  margin: 0 0 3px;
  width: auto;
  float: left;
  padding: 0 0 0 2%;
  font-size: 1em;
  font-weight: normal;
  color: #2C2470;
}
.Holder-AdminProducts-Filters ul li ul li span:first-child {
  margin: 0 0 3px;
  width: 85%;
  float: left;
  padding: 0 0 0 2%;
  font-size: 1em;
  font-weight: normal;
  color: #2C2470;
}
.Holder-AdminProducts-Filters ul li ul li input[type=checkbox] {
  float: left;
  margin: 0 0.5rem;
  text-align: center;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

@media (max-width: 75em) {
  .SingleparentIcon {
    padding: 0.2em;
  }
}
@media (max-width: 56.25em) {
  .SingleparentIcon {
    padding: 0.2em;
  }
}
@media (max-width: 48em) {
  .SingleparentIcon {
    padding: 0.2em;
  }
}
@media (max-width: 37.5em) {
  .SingleparentIcon {
    padding: 0 !important;
    border-bottom: 1px solid #dee2e6 !important;
  }
}
@media (min-width: 112.5em) {
  .SingleparentIcon {
    padding: 0.2em;
  }
}
.SingleparentIcon .SingleparentIcon-img {
  margin: 10px auto;
  border: 1px solid #dee2e6 !important;
  background: #ffffff;
  border-radius: 50%;
  padding: 2.5em;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
}
@media (max-width: 75em) {
  .SingleparentIcon .SingleparentIcon-img {
    padding: 2em;
  }
}
@media (max-width: 56.25em) {
  .SingleparentIcon .SingleparentIcon-img {
    padding: 2em;
  }
}
@media (max-width: 48em) {
  .SingleparentIcon .SingleparentIcon-img {
    padding: 2em;
  }
}
@media (max-width: 37.5em) {
  .SingleparentIcon .SingleparentIcon-img {
    padding: 0.8em;
  }
}
@media (min-width: 112.5em) {
  .SingleparentIcon .SingleparentIcon-img {
    padding: 2.5em;
  }
}
.SingleparentIcon .SingleparentIcon-Link {
  color: #165f6d;
  margin: 0;
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif;
  height: auto;
}
@media (max-width: 75em) {
  .SingleparentIcon .SingleparentIcon-Link {
    font-size: 1.5em;
  }
}
@media (max-width: 56.25em) {
  .SingleparentIcon .SingleparentIcon-Link {
    font-size: 1.5em;
  }
}
@media (max-width: 48em) {
  .SingleparentIcon .SingleparentIcon-Link {
    font-size: 1.5em;
  }
}
@media (max-width: 37.5em) {
  .SingleparentIcon .SingleparentIcon-Link {
    font-size: 1.5em;
  }
}
@media (min-width: 112.5em) {
  .SingleparentIcon .SingleparentIcon-Link {
    font-size: 1.5em;
  }
}
.SingleparentIcon .SingleparentIcon-Link small {
  font-weight: bold;
}

.follow-container {
  /*top: 10px;
  right: 25px;*/
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin: 10px 0;
}
.follow-container .heart {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  font-size: 28px;
  color: #ff0000;
  background-color: white;
  border-radius: 50% !important;
  border: 1px solid #dee2e6 !important;
  outline: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.follow-container .heart:hover {
  transform: scale(1.1);
}
.follow-container .filled {
  content: "♥";
}
.follow-container .hidden {
  display: none;
}
.follow-container small {
  display: flex;
  align-items: center;
  margin: -3px 0 0 0;
  font-size: 10px;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem;
  text-align: right;
  border-radius: 10px;
  width: 171px;
  opacity: 0;
  transform: translateX(0px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
@media (max-width: 75em) {
  .follow-container small {
    margin: -3px 0 0 0;
  }
}
@media (max-width: 56.25em) {
  .follow-container small {
    margin: -3px 0 0 0;
  }
}
@media (max-width: 48em) {
  .follow-container small {
    margin: -3px 0 0 0;
  }
}
@media (max-width: 37.5em) {
  .follow-container small {
    margin: -90px -43px 0 0;
  }
}
@media (min-width: 75em) {
  .follow-container small {
    margin: -3px 0 0 0;
  }
}
@media (min-width: 112.5em) {
  .follow-container small {
    margin: -3px 0 0 0;
  }
}
.follow-container small.show {
  opacity: 1;
  transform: translateX(0);
}
.follow-container small.hide {
  opacity: 0;
  transform: scale(0);
}
.follow-container small.Moving-X {
  transform: translateX(-7px);
}
.follow-container small.MovingX {
  transform: translateX(-7px);
}
.follow-container small span {
  color: #ffffff !important;
  font-size: 16px !important;
}
.follow-container .message-added {
  background-color: green;
}
.follow-container .message-removed {
  background-color: rgb(255, 0, 0);
}

.NavDepartment {
  margin: 0 !important;
  background-color: #0085cc;
}
.NavDepartment div div {
  margin: 0;
}
.NavDepartment div div div {
  margin: auto;
  padding: 18px 0;
  text-align: center;
}
.NavDepartment div div div a {
  color: #94d0f0;
  margin: auto;
}
.NavDepartment div div div a:hover {
  color: #ffffff;
}
.NavDepartment div div div a:hover img {
  opacity: 1;
}
.NavDepartment div div div a:active {
  color: #ffffff;
}
.NavDepartment div div div a img {
  margin: auto;
  opacity: 0.5;
}
.NavDepartment div div div a p {
  margin: auto;
  font-weight: bold;
  line-height: 18px;
  font-size: 16px;
}
@media (max-width: 37.5em) {
  .NavDepartment div div div a p {
    font-size: 11px;
    line-height: 12px;
  }
}
@media (max-width: 37.5em) {
  .NavDepartment div div div a {
    color: #ffffff;
  }
}

.NavDepartment > div > div > div:hover {
  background-color: #008eda;
}

/*@import '5-components/ticket-shopping-cart';
@import '5-components/SeatBooking';
@import '5-components/ProductListAccordion';*/
#LeaderBoardbutton {
  z-index: 9;
  display: block;
  position: fixed;
  bottom: 90px;
  left: 3%;
  /*font-size:26px;color: #ffffff;
  width:90px;*/
  height: 90px;
  background: none;
  outline: none;
  border: 0;
}
#LeaderBoardbutton img {
  width: 90px;
  height: 90px;
}
#LeaderBoardbutton span {
  display: none;
  float: left;
  width: 100%;
  color: #a74522;
  font-size: 0.4em;
  font-weight: bold;
}

#LeaderBoardModal .modal-dialog {
  max-width: 100%;
  margin: 0;
}
#LeaderBoardModal .modal-dialog .modal-content {
  background-color: #2C2470 !important;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body h1, #LeaderBoardModal .modal-dialog .modal-content .modal-body h4 {
  font-family: raleway, sans-serif;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body h1 {
  margin: 0 0 0.2em;
  color: #4d4d4d;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body h4 {
  margin: 0 0 2em;
  color: #0ac332;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .ExportLeaderBoard button {
  background: none;
  border: 2px solid #7ccaa6;
  z-index: 30;
  border-radius: 8px;
  outline: none;
  color: #7ccaa6;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul {
  z-index: 2;
  list-style: none;
  padding: 0;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li {
  width: 33%;
  padding: 0.5rem 0 0;
  position: relative;
  /* background-color: rgba(255,255,255,0.4);
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  border-top: 2px solid #fff; */
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(1) {
  margin: 0 0.2rem 0 0;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(1) p {
  color: #767377;
  width: 100%;
  margin: 0.5rem 0 95px;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(1) .PodiumPosition {
  height: 55px;
  margin: 0;
  border-top-left-radius: 10px;
  background: #bfbfbf;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(1) .PodiumPosition p {
  margin: 0;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(2) {
  margin: 0;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(2) p {
  color: #7d6a11;
  width: 100%;
  margin: 0.5rem 0 105px;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(2) .PodiumPosition {
  height: 85px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #e6c737;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) {
  margin: 0 0 0 0.2rem;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) p {
  color: #e6c737;
  width: 100%;
  margin: 0;
}
@media (max-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) {
    margin: 0 0 0 0.2rem;
  }
}
@media (max-width: 56.25em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) {
    margin: 0 0 0 0.2rem;
  }
}
@media (max-width: 48em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) {
    margin: 0 0 0 0.2rem;
  }
}
@media (max-width: 37.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) {
    margin: 0;
  }
}
@media (min-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) {
    margin: 0 0 0 0.2rem;
  }
}
@media (min-width: 112.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) {
    margin: 0 0 0 0.2rem;
  }
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li:nth-of-type(3) .PodiumPosition {
  height: 48px;
  margin: 0;
  border-top-right-radius: 10px;
  background: #7d6a11;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumProfileMembers {
  width: 100%;
  padding: 0 0 0.5em;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers {
  width: 100%;
  text-align: center;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers label {
  font-size: 20px;
  color: white;
  font-weight: bold;
}
@media (max-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers label {
    font-size: 20px;
  }
}
@media (max-width: 56.25em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers label {
    font-size: 20px;
  }
}
@media (max-width: 48em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers label {
    font-size: 20px;
  }
}
@media (max-width: 37.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers label {
    font-size: 14px;
  }
}
@media (min-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers label {
    font-size: 20px;
  }
}
@media (min-width: 112.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers label {
    font-size: 20px;
  }
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers p {
  font-size: 1.1em;
  color: #8de1ff;
  margin: 0;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumNameMembers p em {
  color: #e6c737;
  padding: 0 0.4rem 0 0;
  font-style: normal;
  font-weight: bold;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumMemberResult {
  width: 100%;
  margin: 0 0 100px;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumMemberResult p {
  font-size: 1.1em;
  color: #ffffff;
  margin: 0;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumMemberResult p em {
  color: #25d366;
  padding: 0 0.4rem 0 0;
  font-size: 0.6em;
  font-style: normal;
  font-weight: bold;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumColorGroup {
  position: absolute;
  z-index: 4;
  top: 0;
  margin: 1em 0 0 1em;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ul li .PodiumPosition {
  width: 100%;
  position: absolute;
  font-size: 2em;
  bottom: 0;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li {
  position: relative;
  margin: 0.2rem 0 0;
  border: 0;
  border-radius: 0;
  background-color: #201a59;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li:nth-of-type(1) {
  display: none !important;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li:nth-of-type(2) {
  display: none !important;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li:nth-of-type(3) {
  display: none !important;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterRanking {
  display: flex;
  justify-content: center;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterRanking span {
  color: #ffffff;
  font-size: 2em;
}
@media (max-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterRanking span {
    font-size: 2em;
  }
}
@media (max-width: 56.25em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterRanking span {
    font-size: 2em;
  }
}
@media (max-width: 48em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterRanking span {
    font-size: 2em;
  }
}
@media (max-width: 37.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterRanking span {
    font-size: 1em;
  }
}
@media (min-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterRanking span {
    font-size: 2em;
  }
}
@media (min-width: 112.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterRanking span {
    font-size: 2em;
  }
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterProfile {
  display: flex;
  justify-content: center;
  padding: 0;
  /* &:nth-of-type(1) {float:none;width:100%;padding:0 0 0.5em;}
  &:nth-of-type(2) {float:none;width:100%;padding:0 0 0.5em;}
  &:nth-of-type(3) {float:none;width:100%;padding:0 0 0.5em;} */
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterProfile img {
  width: 75px;
  height: 75px;
  margin: 0 0 0 0.3rem;
}
@media (max-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterProfile img {
    width: 75px;
    height: 75px;
  }
}
@media (max-width: 56.25em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterProfile img {
    width: 75px;
    height: 75px;
  }
}
@media (max-width: 48em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterProfile img {
    width: 75px;
    height: 75px;
  }
}
@media (max-width: 37.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterProfile img {
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterProfile img {
    width: 75px;
    height: 75px;
  }
}
@media (min-width: 112.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterProfile img {
    width: 75px;
    height: 75px;
  }
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName {
  padding: 0 0 0.5em;
  color: #ffffff;
  /* &:nth-of-type(1) {float:none;width:100%;padding:0 0 0.5em;}
  &:nth-of-type(2) {float:none;width:100%;padding:0 0 0.5em;}
  &:nth-of-type(3) {float:none;width:100%;padding:0 0 0.5em;} */
}
@media (max-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName span {
    font-size: 22px;
  }
}
@media (max-width: 56.25em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName span {
    font-size: 22px;
  }
}
@media (max-width: 48em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName span {
    font-size: 22px;
  }
}
@media (max-width: 37.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName span {
    font-size: 1.1em;
  }
}
@media (min-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName span {
    font-size: 22px;
  }
}
@media (min-width: 112.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName span {
    font-size: 22px;
  }
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName p {
  font-size: 1.1em;
  color: #8de1ff;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterName p em {
  color: #e6c737;
  padding: 0 0.4rem 0 0;
  font-style: normal;
  font-weight: bold;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterResult p {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
}
#LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterResult p em {
  color: #25d366;
  font-size: 0.5em;
  font-style: normal;
}
@media (max-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterResult p {
    font-size: 16px;
  }
}
@media (max-width: 56.25em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterResult p {
    font-size: 16px;
  }
}
@media (max-width: 48em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterResult p {
    font-size: 16px;
  }
}
@media (max-width: 37.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterResult p {
    font-size: 16px;
  }
}
@media (min-width: 75em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterResult p {
    font-size: 20px;
  }
}
@media (min-width: 112.5em) {
  #LeaderBoardModal .modal-dialog .modal-content .modal-body .LeaderBoardMembers ol li .MemberPromoterResult p {
    font-size: 20px;
  }
}

@media (max-width: 75em) {
  .HomePreviewProducts-Wrapper {
    padding: 0 0 6.2em 0;
    margin-top: 2.2em;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewProducts-Wrapper {
    padding: 0 0 6.2em 0;
    margin-top: 2.2em;
  }
}
@media (max-width: 48em) {
  .HomePreviewProducts-Wrapper {
    padding: 0 0 6.2em 0;
    margin-top: 2.2em;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewProducts-Wrapper {
    padding: 2.2em 0 4.5em;
    margin-top: 0;
  }
}
@media (min-width: 75em) {
  .HomePreviewProducts-Wrapper {
    padding: 0 0 8.2em 0;
    margin-top: 2.2em;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewProducts-Wrapper {
    padding: 0 0 8.2em 0;
    margin-top: 2.2em;
  }
}
.HomePreviewProducts-Wrapper div div span {
  color: #553c06;
}
@media (max-width: 75em) {
  .HomePreviewProducts-Wrapper div div span {
    font-size: 2em;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewProducts-Wrapper div div span {
    font-size: 2em;
  }
}
@media (max-width: 48em) {
  .HomePreviewProducts-Wrapper div div span {
    font-size: 2em;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewProducts-Wrapper div div span {
    font-size: 2.5em;
  }
}
@media (min-width: 75em) {
  .HomePreviewProducts-Wrapper div div span {
    font-size: 2em;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewProducts-Wrapper div div span {
    font-size: 2em;
  }
}
.HomePreviewProducts-Wrapper div div label {
  margin: 0;
  font-size: 1.6em;
}
@media (max-width: 75em) {
  .HomePreviewProducts-Wrapper div div label {
    justify-content: start;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewProducts-Wrapper div div label {
    justify-content: start;
  }
}
@media (max-width: 48em) {
  .HomePreviewProducts-Wrapper div div label {
    justify-content: start;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewProducts-Wrapper div div label {
    justify-content: center;
  }
}
@media (min-width: 75em) {
  .HomePreviewProducts-Wrapper div div label {
    justify-content: start;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewProducts-Wrapper div div label {
    justify-content: start;
  }
}

@media (max-width: 75em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title {
    padding: 0;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title {
    padding: 0;
  }
}
@media (max-width: 48em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title {
    padding: 0;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title {
    padding: 0 0.8em;
  }
}
@media (min-width: 75em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title {
    padding: 0;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title {
    padding: 0;
  }
}
.HomePreviewItem-Wrapper div .HomePreviewItem-title span {
  color: #e9aa1f;
  font-size: 2em;
}
.HomePreviewItem-Wrapper div .HomePreviewItem-title label {
  margin: 0 0 2em;
  color: #0085cc;
  font-size: 2.1em;
  font-weight: bold;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 75em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title label {
    padding: 0;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title label {
    padding: 0;
  }
}
@media (max-width: 48em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title label {
    padding: 0;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title label {
    padding: 0 0 0 0.5em;
  }
}
@media (min-width: 75em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title label {
    padding: 0;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewItem-Wrapper div .HomePreviewItem-title label {
    padding: 0;
  }
}

.HomePreviewDepartments-Wrapper {
  background-color: #ffffff;
}
.HomePreviewDepartments-Wrapper svg polygon {
  fill: #f7f7f7;
}
.HomePreviewDepartments-Wrapper aside {
  z-index: 2;
}
.HomePreviewDepartments-Wrapper aside div h2 {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 2.1em;
}
@media (max-width: 75em) {
  .HomePreviewDepartments-Wrapper aside div h2 {
    margin: 3rem 0;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewDepartments-Wrapper aside div h2 {
    margin: 3rem 0;
  }
}
@media (max-width: 48em) {
  .HomePreviewDepartments-Wrapper aside div h2 {
    margin: 3rem 0;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewDepartments-Wrapper aside div h2 {
    margin: 0 0 2rem;
  }
}
@media (min-width: 75em) {
  .HomePreviewDepartments-Wrapper aside div h2 {
    margin: 3rem 0;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewDepartments-Wrapper aside div h2 {
    margin: 3rem 0;
  }
}
.HomePreviewDepartments-Wrapper aside div h2 em {
  color: #0085cc;
  font-style: normal;
  font-weight: bold;
}
.HomePreviewDepartments-Wrapper .department-cover div {
  height: auto;
  width: 100%;
  z-index: 1;
}
.HomePreviewDepartments-Wrapper .department-cover div:first-child {
  z-index: 2;
}
.HomePreviewDepartments-Wrapper .department-cover div a {
  width: 100%;
  margin-top: 1.8em;
  color: #0085cc;
  text-transform: uppercase;
  font-size: 1.5em;
  font-family: "Montserrat", sans-serif;
}
.HomePreviewDepartments-Wrapper .department-cover div a:hover {
  color: #000000;
}
@media (max-width: 75em) {
  .HomePreviewDepartments-Wrapper .department-cover div a {
    font-size: 1.5em;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewDepartments-Wrapper .department-cover div a {
    font-size: 1.2em;
  }
}
@media (max-width: 48em) {
  .HomePreviewDepartments-Wrapper .department-cover div a {
    font-size: 0.9em;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewDepartments-Wrapper .department-cover div a {
    font-size: 0.9em;
  }
}
@media (min-width: 75em) {
  .HomePreviewDepartments-Wrapper .department-cover div a {
    font-size: 1.5em;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewDepartments-Wrapper .department-cover div a {
    font-size: 1.5em;
  }
}
.HomePreviewDepartments-Wrapper .department-cover div img {
  opacity: 0.8;
  border: 9px solid #fafafa;
  border-radius: 30px !important;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}
.HomePreviewDepartments-Wrapper .department-cover div img:hover {
  opacity: 1;
  border: 9px solid #d8d8d8;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}
@media (max-width: 75em) {
  .HomePreviewDepartments-Wrapper .department-cover div img {
    height: 145px;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewDepartments-Wrapper .department-cover div img {
    height: 145px;
  }
}
@media (max-width: 48em) {
  .HomePreviewDepartments-Wrapper .department-cover div img {
    height: 145px;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewDepartments-Wrapper .department-cover div img {
    height: 145px;
  }
}
@media (min-width: 75em) {
  .HomePreviewDepartments-Wrapper .department-cover div img {
    height: 245px;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewDepartments-Wrapper .department-cover div img {
    height: 245px;
  }
}

@media (max-width: 75em) {
  .HomePreviewEvent-Wrapper {
    padding: 0 0 3.2em 0;
    margin-top: 2.2em;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewEvent-Wrapper {
    padding: 0 0 3.2em 0;
    margin-top: 2.2em;
  }
}
@media (max-width: 48em) {
  .HomePreviewEvent-Wrapper {
    padding: 0 0 3.2em 0;
    margin-top: 2.2em;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewEvent-Wrapper {
    padding: 2.2em 0 2.5em;
    margin-top: 0;
  }
}
@media (min-width: 75em) {
  .HomePreviewEvent-Wrapper {
    padding: 1.5em 0 4.2em 0;
    margin-top: 2.2em;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewEvent-Wrapper {
    padding: 1.5em 0 4.2em 0;
    margin-top: 2.2em;
  }
}
.HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder span {
  color: #553c06;
}
@media (max-width: 75em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder span {
    font-size: 2em;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder span {
    font-size: 2em;
  }
}
@media (max-width: 48em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder span {
    font-size: 2em;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder span {
    font-size: 2.5em;
  }
}
@media (min-width: 75em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder span {
    font-size: 2em;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder span {
    font-size: 2em;
  }
}
.HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder label {
  margin: 0 0 2em;
  font-size: 1.8em;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 75em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder label {
    justify-content: center;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder label {
    justify-content: center;
  }
}
@media (max-width: 48em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder label {
    justify-content: center;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder label {
    justify-content: center;
  }
}
@media (min-width: 75em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder label {
    justify-content: center;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewEvent-Wrapper div .HomePreviewEvent-titleholder label {
    justify-content: center;
  }
}

.HomePreviewEvent {
  margin: 0;
}
@media (max-width: 75em) {
  .HomePreviewEvent {
    margin: 0;
  }
}
@media (max-width: 56.25em) {
  .HomePreviewEvent {
    margin: 0;
  }
}
@media (max-width: 48em) {
  .HomePreviewEvent {
    margin: 0;
  }
}
@media (max-width: 37.5em) {
  .HomePreviewEvent {
    margin: 1em auto auto;
    padding: 0 1.3em;
  }
}
@media (min-width: 75em) {
  .HomePreviewEvent {
    margin: 0;
  }
}
@media (min-width: 112.5em) {
  .HomePreviewEvent {
    margin: 0;
  }
}
.HomePreviewEvent .HomePreviewEvent-Title a {
  color: #3E3E3E;
  font-size: 1.4em;
  margin: 0 0 10px;
  padding: 0 14px;
  text-transform: uppercase;
}
.HomePreviewEvent .HomePreviewEvent-Title a:hover {
  color: #000000;
  font-size: 1.4em;
  margin: 0 0 10px;
  padding: 0 14px;
  text-transform: uppercase;
}
.HomePreviewEvent .HomePreviewEvent-Title a h3 {
  font-weight: lighter;
  margin: 1%;
}
.HomePreviewEvent .HomePreviewEvent-Title h5 {
  color: #034488;
}
.HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEvent-Calendar {
  border-top: 1px solid #0e559f;
  border-bottom: 2px solid #e9aa1f;
  border-left: 1px solid #0e559f;
  border-right: 1px solid #0e559f;
}
.HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEvent-Calendar h1 {
  color: #e9aa1f;
}
.HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEvent-Calendar h5, .HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEvent-Calendar h6 {
  color: #0e559f;
}
.HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEvent-button a {
  font-size: 1.5em;
  color: #ffffff;
  background-color: #0e9bda;
  padding: 0.3em 0.2em 0.3em 0.8em;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEvent-button a:hover {
  color: #ffffff;
  background-color: #e9aa1f;
  padding: 0.5em 0.5em 0.5em 1.2em;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEvent-button a:hover span {
  right: 1em;
}
.HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEvent-button a span {
  width: 24px;
  right: 1.5em;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  background: white;
  color: #e9aa1f;
  font-size: 0.5em;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e9aa1f;
}
.HomePreviewEvent .HomePreviewEvent-Content .HomePreviewEventImg {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.HomeLocation-Wrapper {
  padding: 0;
}
@media (max-width: 75em) {
  .HomeLocation-Wrapper {
    margin-top: 2.2em;
  }
}
@media (max-width: 56.25em) {
  .HomeLocation-Wrapper {
    margin-top: 2.2em;
  }
}
@media (max-width: 48em) {
  .HomeLocation-Wrapper {
    margin-top: 2.2em;
  }
}
@media (max-width: 37.5em) {
  .HomeLocation-Wrapper {
    margin-top: 0;
  }
}
@media (min-width: 75em) {
  .HomeLocation-Wrapper {
    margin-top: 2.2em;
  }
}
@media (min-width: 112.5em) {
  .HomeLocation-Wrapper {
    margin-top: 2.2em;
  }
}
.HomeLocation-Wrapper svg {
  enable-background: new 0 0 1125 101;
  width: 100%;
}
@media (max-width: 75em) {
  .HomeLocation-Wrapper svg {
    height: auto;
  }
}
@media (max-width: 56.25em) {
  .HomeLocation-Wrapper svg {
    height: auto;
  }
}
@media (max-width: 48em) {
  .HomeLocation-Wrapper svg {
    height: auto;
  }
}
@media (max-width: 37.5em) {
  .HomeLocation-Wrapper svg {
    height: 35px;
  }
}
@media (min-width: 75em) {
  .HomeLocation-Wrapper svg {
    height: auto;
  }
}
@media (min-width: 112.5em) {
  .HomeLocation-Wrapper svg {
    height: auto;
  }
}
.HomeLocation-Wrapper svg polygon {
  fill: #FFFFFF;
}
.HomeLocation-Wrapper div .HomeLocation-titleholder span {
  color: #553c06;
  margin: 0 1rem 0 0;
}
@media (max-width: 75em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder span {
    font-size: 2em;
  }
}
@media (max-width: 56.25em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder span {
    font-size: 2em;
  }
}
@media (max-width: 48em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder span {
    font-size: 2em;
  }
}
@media (max-width: 37.5em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder span {
    font-size: 2.5em;
  }
}
@media (min-width: 75em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder span {
    font-size: 2em;
  }
}
@media (min-width: 112.5em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder span {
    font-size: 2em;
  }
}
.HomeLocation-Wrapper div .HomeLocation-titleholder label {
  margin: 2em 0 0;
  font-size: 2.1em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 75em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder label {
    justify-content: center;
  }
}
@media (max-width: 56.25em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder label {
    justify-content: center;
  }
}
@media (max-width: 48em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder label {
    justify-content: center;
  }
}
@media (max-width: 37.5em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder label {
    justify-content: center;
  }
}
@media (min-width: 75em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder label {
    justify-content: center;
  }
}
@media (min-width: 112.5em) {
  .HomeLocation-Wrapper div .HomeLocation-titleholder label {
    justify-content: center;
  }
}

.NoEvent-Holder {
  width: 100%;
}
.NoEvent-Holder svg {
  color: #989898;
  font-size: 3em;
  cursor: pointer;
}
.NoEvent-Holder p {
  color: #989898;
  font-size: 1.2em !important;
  margin: 2em 0 1.5em !important;
}

.mainEvents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 20rem));
  grid-gap: 1rem;
  justify-content: center;
}

.EventTicket-Holder {
  width: 100%;
  margin: 1rem 0 0;
}
.EventTicket-Holder .EventTicket {
  background: #00494b;
  background: linear-gradient(103deg, #00494b 0%, #52e7ab 90%, #3dcf96 90%);
  margin: 0.4rem 0 0.4rem !important;
}
.EventTicket-Holder .EventTicket p {
  color: #ffffff;
  background: #3fb879;
  padding: 0.8rem 0.3rem;
  margin-bottom: 0;
  border-right: 3px dotted #278353;
  border-left: 3px dotted #278353;
  font-weight: bold;
  font-size: 0.8em;
}
@media (max-width: 75em) {
  .EventTicket-Holder .EventTicket p {
    font-size: 0.8em;
  }
}
@media (max-width: 56.25em) {
  .EventTicket-Holder .EventTicket p {
    font-size: 0.8em;
  }
}
@media (max-width: 48em) {
  .EventTicket-Holder .EventTicket p {
    font-size: 0.8em;
  }
}
@media (max-width: 37.5em) {
  .EventTicket-Holder .EventTicket p {
    font-size: 0.8em;
  }
}
@media (min-width: 75em) {
  .EventTicket-Holder .EventTicket p {
    font-size: 0.8em;
  }
}
@media (min-width: 112.5em) {
  .EventTicket-Holder .EventTicket p {
    font-size: 0.8em;
  }
}
.EventTicket-Holder .EventTicket strong {
  color: #fff;
}
.EventTicket-Holder .EventTicket .AddTicket {
  width: 70px;
  background-color: #fff;
  margin: auto;
}
@media (max-width: 75em) {
  .EventTicket-Holder .EventTicket .AddTicket {
    width: 70px;
  }
}
@media (max-width: 56.25em) {
  .EventTicket-Holder .EventTicket .AddTicket {
    width: 70px;
  }
}
@media (max-width: 48em) {
  .EventTicket-Holder .EventTicket .AddTicket {
    width: 70px;
  }
}
@media (max-width: 37.5em) {
  .EventTicket-Holder .EventTicket .AddTicket {
    width: 40px;
  }
}
@media (min-width: 75em) {
  .EventTicket-Holder .EventTicket .AddTicket {
    width: 70px;
  }
}
@media (min-width: 112.5em) {
  .EventTicket-Holder .EventTicket .AddTicket {
    width: 70px;
  }
}
.EventTicket-Holder .EventTicket .AddTicket a {
  padding: 0;
  cursor: pointer;
}
@media (max-width: 75em) {
  .EventTicket-Holder .EventTicket .AddTicket a {
    padding: 0;
  }
}
@media (max-width: 56.25em) {
  .EventTicket-Holder .EventTicket .AddTicket a {
    padding: 0;
  }
}
@media (max-width: 48em) {
  .EventTicket-Holder .EventTicket .AddTicket a {
    padding: 0;
  }
}
@media (max-width: 37.5em) {
  .EventTicket-Holder .EventTicket .AddTicket a {
    padding: 0;
  }
}
@media (min-width: 75em) {
  .EventTicket-Holder .EventTicket .AddTicket a {
    padding: 0;
  }
}
@media (min-width: 112.5em) {
  .EventTicket-Holder .EventTicket .AddTicket a {
    padding: 0;
  }
}
.EventTicket-Holder .EventTicket .AddTicket svg {
  margin: 0;
  float: none;
  margin: 0;
  color: #2C2470;
}
@media (max-width: 75em) {
  .EventTicket-Holder .EventTicket .AddTicket svg {
    float: none;
  }
}
@media (max-width: 56.25em) {
  .EventTicket-Holder .EventTicket .AddTicket svg {
    float: none;
  }
}
@media (max-width: 48em) {
  .EventTicket-Holder .EventTicket .AddTicket svg {
    float: right;
  }
}
@media (max-width: 37.5em) {
  .EventTicket-Holder .EventTicket .AddTicket svg {
    float: none;
  }
}
@media (min-width: 75em) {
  .EventTicket-Holder .EventTicket .AddTicket svg {
    float: none;
  }
}
@media (min-width: 112.5em) {
  .EventTicket-Holder .EventTicket .AddTicket svg {
    float: none;
  }
}

.Info-container span {
  font-size: 1em;
  color: #bddff2;
}

.copyClipboard label {
  font-size: 1.2em;
  font-family: roboto;
}
.copyClipboard span {
  color: #2d8f08;
}
.copyClipboard input {
  height: 32px;
  margin: 0 0.5em 0 0;
  border-radius: 4px;
  background: #efefef;
  border: 0;
  padding: 0.4rem;
}
.copyClipboard button {
  border: 0;
  background: #2d8f08;
  color: #fff;
  border-radius: 4px;
}
.copyClipboard button:hover {
  background-color: #1a4e06;
}

.Filter-Actions {
  margin: 0;
  width: 70%;
  color: #1580a6;
}
@media (max-width: 75em) {
  .Filter-Actions {
    width: 70%;
    border-left: 0;
    border-top: 0;
    padding: 0;
  }
}
@media (max-width: 56.25em) {
  .Filter-Actions {
    width: 70%;
    border-left: 0;
    border-top: 0;
    padding: 0;
  }
}
@media (max-width: 48em) {
  .Filter-Actions {
    width: 70%;
    border-left: 0;
    border-top: 0;
    padding: 0;
  }
}
@media (max-width: 37.5em) {
  .Filter-Actions {
    width: 100%;
    border-left: 0;
    border-top: 1px solid #ccc;
    padding: 0.5rem 0 0;
  }
}
@media (min-width: 75em) {
  .Filter-Actions {
    width: 70%;
    border-left: 0;
    border-top: 0;
    padding: 0;
  }
}
@media (min-width: 112.5em) {
  .Filter-Actions {
    width: 70%;
    border-left: 0;
    border-top: 0;
    padding: 0;
  }
}
.Filter-Actions .Filter-Estatus-input {
  margin: auto;
  float: none;
  height: auto;
  box-shadow: none;
  background: none;
  border: 0;
  width: 70%;
}
@media (max-width: 75em) {
  .Filter-Actions .Filter-Estatus-input {
    width: 70%;
  }
}
@media (max-width: 56.25em) {
  .Filter-Actions .Filter-Estatus-input {
    width: 70%;
  }
}
@media (max-width: 48em) {
  .Filter-Actions .Filter-Estatus-input {
    width: 70%;
  }
}
@media (max-width: 37.5em) {
  .Filter-Actions .Filter-Estatus-input {
    width: 32%;
  }
}
@media (min-width: 75em) {
  .Filter-Actions .Filter-Estatus-input {
    width: 70%;
  }
}
@media (min-width: 112.5em) {
  .Filter-Actions .Filter-Estatus-input {
    width: 70%;
  }
}
.Filter-Actions .Filter-Estatus-input input {
  width: 100%;
  margin: 6px 0 0;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.Filter-Actions .Filter-Estatus-input input:hover {
  width: 100%;
  margin: 6px 0 0;
  transform: rotate(120deg);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.Filter-Actions .Filter-Estatus-input input:focus {
  outline: none !important;
}
.Filter-Actions p {
  margin: 0 0 0.5em;
  width: 100%;
  font-size: 0.8em;
  text-align: center;
  line-height: 18px;
}

.Filter-Estatus-input {
  padding: 3px;
  width: 24%;
  margin: 0 0.5% 0 0;
}
@media (max-width: 75em) {
  .Filter-Estatus-input {
    width: 24%;
  }
}
@media (max-width: 56.25em) {
  .Filter-Estatus-input {
    width: 24%;
  }
}
@media (max-width: 48em) {
  .Filter-Estatus-input {
    width: 24%;
  }
}
@media (max-width: 37.5em) {
  .Filter-Estatus-input {
    width: 32%;
  }
}
@media (min-width: 75em) {
  .Filter-Estatus-input {
    width: 24%;
  }
}
@media (min-width: 112.5em) {
  .Filter-Estatus-input {
    width: 24%;
  }
}
.Filter-Estatus-input p {
  margin: 0;
  color: #000000;
}

.OrderMonitor-button a {
  float: left;
  margin: 0.5rem 0;
  background-color: #2C2470;
  color: #ffffff;
  border-bottom: 3px solid #631477;
  box-shadow: 1px 3px 3px -3px #292929;
}
.OrderMonitor-button a:hover {
  color: #ffff00;
  border-bottom: 3px solid #000000;
  box-shadow: none;
}
.OrderMonitor-button a svg {
  font-size: 1em;
}

.OrderResult-Holder {
  padding: 1rem 0.5rem;
}
.OrderResult-Holder label {
  font-size: 1.1em;
  font-weight: bold;
  color: #545454;
  float: left;
  width: 100%;
  text-align: left;
  margin: 0;
}
.OrderResult-Holder input[type=text] {
  font-size: 1.1em;
  color: #545454;
  float: left;
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0 0 0 0.5rem;
}
.OrderResult-Holder span {
  font-size: 1.3em;
  float: left;
  width: 100%;
  text-align: left;
}

.Transaction-ID span, .HolderOrder-Code span {
  color: #1580a6;
}

.OrderResult-Success-Holder {
  margin: 1rem auto 0.5rem;
  border-bottom: 1px solid #ccc;
  padding: 0 0 0.5rem;
}
.OrderResult-Success-Holder div:first-child {
  width: 60%;
  margin: auto;
}

.OrderResult-paymentMethod button {
  border: 0;
  background: #ec923d;
  margin: auto auto 0.4rem;
  color: #ffffff;
  padding: 5px 0 8px;
  border-radius: 4px;
}

.OrderResult-PayPal {
  margin: 0 0 0.5rem;
  background: #003087;
  height: 35px;
  min-height: 35px;
  max-height: 55px;
  border: 0;
  border-radius: 4px;
  font-style: oblique;
  font-weight: bold;
  color: #fff;
}

.OrderResult-PayPal i {
  margin: 0 0.3rem 0 0;
}

.OrderResult-CreditCard {
  margin: 0 0 0.5rem;
  background: #01921f;
  height: 35px;
  min-height: 35px;
  max-height: 55px;
  border: 0;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
}

.OrderResult-CreditCard i {
  margin: 0 0.3rem 0 0;
}

#paymentMethod-Card-Holder {
  float: left;
  display: block;
}

#paymentMethod-PayPal-Holder {
  float: left;
  display: block;
  margin: 1em 0;
  width: 100%;
}

#paymentMethod-Card-Holder label {
  padding: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #545454;
  text-align: left;
}

#paymentMethod-Card-Holder select {
  padding: 0 1rem 0 0;
  color: #000;
  border: 1px solid #cccccc;
  border-radius: 4px;
  height: 40px !important;
}

#paymentMethod-Card-Holder input[type=textarea] {
  padding: 0 0.5rem;
  color: #000;
  border: 1px solid #cccccc;
  border-radius: 4px;
  min-height: 60px !important;
}

#paymentMethod-Card-Holder input[type=text] {
  padding: 0 0.5rem;
  color: #000;
  border: 1px solid #cccccc;
  border-radius: 4px;
  height: 40px !important;
}

#paymentMethod-Card-Holder input[type=number] {
  padding: 0 0.5rem;
  color: #000;
  border: 1px solid #cccccc;
  border-radius: 4px;
  height: 40px !important;
}

#paymentMethod-Card-Holder button {
  margin: 0 0 0.5rem;
  background: #01921f;
  height: 35px;
  min-height: 35px;
  max-height: 55px;
  border: 0;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
}

#paymentMethod-Card-Holder button i {
  margin: 0 0.3rem 0 0;
}

#USA-States {
  display: none;
}

#USA-ZipCode {
  display: none;
}

#USA-States-shipping {
  display: none;
}

#USA-ZipCode-shipping {
  display: none;
}

.OrderResult-Success-Holder h2 {
  width: 100%;
  text-align: center;
  margin: 1rem auto;
}

.OrderResult-Success-Holder h5 {
  width: 100%;
  text-align: center;
  margin: auto auto 1rem;
}

.OrderResult-Product-Holder {
  margin: 1.2rem 0;
  border-top: 1px solid #ccc;
  padding: 0 !important;
}

.OrderResult-Product-Holder label {
  font-size: 1.3em;
}

.Product-item-wrapper article:nth-child(even) {
  background: #e7e7e7;
}
.Product-item-wrapper article:nth-child(odd) {
  background: #f1f1f1;
}

.CreditCard-opt-holder span svg {
  color: #0085cc;
}

.Paypal-opt-holder span svg {
  color: #003087;
}

.CreateOrderResult-paymentBridge iframe {
  border: 0;
  height: 100vh;
}
@media (max-width: 75em) {
  .CreateOrderResult-paymentBridge iframe {
    height: 83vh;
  }
}
@media (max-width: 56.25em) {
  .CreateOrderResult-paymentBridge iframe {
    height: 83vh;
  }
}
@media (max-width: 48em) {
  .CreateOrderResult-paymentBridge iframe {
    height: 83vh;
  }
}
@media (max-width: 37.5em) {
  .CreateOrderResult-paymentBridge iframe {
    height: 68vh;
  }
}
@media (min-width: 75em) {
  .CreateOrderResult-paymentBridge iframe {
    height: 83vh;
  }
}
@media (min-width: 112.5em) {
  .CreateOrderResult-paymentBridge iframe {
    height: 83vh;
  }
}
.CreateOrderResult-paymentBridge iframe html {
  overflow: hidden !important;
}

/*SHiPPING-AREA*/ /*////////////*/
.Shipping-area #ShippingValidation-zone {
  display: none;
}

/*SHOPPING-CART*/ /*////////////*/
.ShoppingCart-List header div {
  border-left: 1px solid #dee2e6 !important;
}
.ShoppingCart-List header div:first-child {
  border-left: 0;
}
.ShoppingCart-List header div p {
  color: #1580a6;
  padding: 0.5rem 0;
}
.ShoppingCart-List div h4 {
  color: #3c7705;
}
.ShoppingCart-List .price-label-mobile {
  border-top: 1px solid #dee2e6 !important;
}

.ShoppingCart-Price-Holder {
  background-color: #f1f1f1;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  margin: 0.8rem auto !important;
  text-align: right;
  opacity: 0.4;
}
.ShoppingCart-Price-Holder ul {
  border-left: 1px solid #e4e4e4;
  float: left;
  font-size: 1em;
  font-weight: bold;
  line-height: 16px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0 !important;
  text-align: center;
  width: 100%;
}
.ShoppingCart-Price-Holder ul:first-child {
  border-left: 0;
}
.ShoppingCart-Price-Holder ul li {
  float: left;
  width: 50%;
}
@media (max-width: 75em) {
  .ShoppingCart-Price-Holder ul li {
    width: 50%;
    margin: 0;
  }
}
@media (max-width: 56.25em) {
  .ShoppingCart-Price-Holder ul li {
    width: 50%;
    margin: 0;
  }
}
@media (max-width: 48em) {
  .ShoppingCart-Price-Holder ul li {
    width: 50%;
    margin: 0;
  }
}
@media (max-width: 37.5em) {
  .ShoppingCart-Price-Holder ul li {
    width: 100%;
    margin: 0.4rem 0 0;
  }
}
@media (min-width: 75em) {
  .ShoppingCart-Price-Holder ul li {
    width: 50%;
    margin: 0;
  }
}
@media (min-width: 112.5em) {
  .ShoppingCart-Price-Holder ul li {
    width: 50%;
    margin: 0;
  }
}
.ShoppingCart-Price-Holder ul li:nth-child(odd) {
  color: #545454;
}
.ShoppingCart-Price-Holder ul li:nth-child(even) {
  color: #3c7705;
}
.ShoppingCart-Price-Holder ul li .Paymethod-ratio .input-ratio-holder {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
}
.ShoppingCart-Price-Holder #ShippingValidation-paymethod {
  display: none;
}

@media (max-width: 75em) {
  .ShoppingCart-disclaimer p {
    font-size: 1em;
  }
}
@media (max-width: 56.25em) {
  .ShoppingCart-disclaimer p {
    font-size: 1em;
  }
}
@media (max-width: 48em) {
  .ShoppingCart-disclaimer p {
    font-size: 1em;
  }
}
@media (max-width: 37.5em) {
  .ShoppingCart-disclaimer p {
    font-size: 0.8em;
  }
}
@media (min-width: 75em) {
  .ShoppingCart-disclaimer p {
    font-size: 1em;
  }
}
@media (min-width: 112.5em) {
  .ShoppingCart-disclaimer p {
    font-size: 1em;
  }
}
.ShoppingCart-disclaimer p a {
  color: #2C2470;
}
.ShoppingCart-disclaimer p a:hover {
  color: #f37732;
}

.ShoppingCart-links a {
  color: #2C2470;
  padding: 1.2em 0;
  margin: 1em 0;
}
.ShoppingCart-links a:hover {
  color: #f37732;
}

.profileByUsernamePublic {
  background-color: #fafafa;
}
.profileByUsernamePublic fieldset header {
  border: 0 !important;
}
.profileByUsernamePublic fieldset header .header-img {
  height: 180px;
  border-bottom: 3px solid #b9d3e9;
  background-image: url(/images/svg/Marketplace/MarketplaceHeaderBG.svg);
  background-repeat: no-repeat;
  background-size: 100% 180px;
  background-attachment: fixed;
  background-color: #2C2470;
}
@media (max-width: 75em) {
  .profileByUsernamePublic fieldset header .header-img {
    background-size: 100% 456px;
    background-position: 0 -108px;
  }
}
@media (max-width: 56.25em) {
  .profileByUsernamePublic fieldset header .header-img {
    background-size: 100% 456px;
    background-position: 0 -108px;
  }
}
@media (max-width: 48em) {
  .profileByUsernamePublic fieldset header .header-img {
    background-size: 100% 456px;
    background-position: 0 -108px;
  }
}
@media (max-width: 37.5em) {
  .profileByUsernamePublic fieldset header .header-img {
    background-size: 100% 180px;
    background-position: top center;
  }
}
@media (min-width: 75em) {
  .profileByUsernamePublic fieldset header .header-img {
    background-size: 100% 456px;
    background-position: 0 -108px;
  }
}
@media (min-width: 112.5em) {
  .profileByUsernamePublic fieldset header .header-img {
    background-size: 100% 456px;
    background-position: 0 -108px;
  }
}
.profileByUsernamePublic fieldset header .ProfilePicture {
  margin: 0;
  position: absolute;
  top: -50px;
  border: 1px solid #dee2e6 !important;
  border-radius: 120px;
  left: 1.2em;
}
.profileByUsernamePublic fieldset header .ProfilePicture img {
  width: 100px;
  height: 100px;
}
.profileByUsernamePublic fieldset header button {
  outline: 0;
  background: none;
  border: 0;
}
.profileByUsernamePublic fieldset header button span {
  color: #bddff2;
}
.profileByUsernamePublic fieldset header button:hover {
  outline: 0;
}
.profileByUsernamePublic fieldset header button:active {
  outline: 0;
}
.profileByUsernamePublic fieldset header button:focus {
  outline: 0;
}
.profileByUsernamePublic fieldset header button:focus-visible {
  outline: 0;
}
.profileByUsernamePublic fieldset header .message-container {
  display: none;
  background-color: #31cc63;
  padding: 10px;
  margin-top: 10px;
  border: 0;
  transition: opacity 0.5s ease-in-out;
}
.profileByUsernamePublic fieldset header .profileDetails-content div h4 span {
  color: #bddff2;
  font-size: 0.8em;
}
.profileByUsernamePublic fieldset header .profileDetails-content div a {
  color: #bddff2;
  font-size: 0.9em;
}
.profileByUsernamePublic fieldset header .profileDetails-content div a span {
  font-size: 0.8em;
}
.profileByUsernamePublic fieldset header .profileMoreDetails {
  display: none;
}
.profileByUsernamePublic fieldset header .profileMoreDetails div div {
  margin: 0 0 0.5em;
  border: 1px solid #dee2e6;
  padding: 0em 0.8em;
}
.profileByUsernamePublic fieldset header .profileMoreDetails div div label {
  width: 100%;
  margin: 0.5rem 0 0.3rem;
  border-bottom: 0;
  color: #545454;
  font-size: 0.9rem;
}
.profileByUsernamePublic fieldset header .profileMoreDetails div div label span {
  color: #8400a7;
  font-size: 1.1em;
}
.profileByUsernamePublic fieldset header .profileMoreDetails div div a {
  color: #000000;
  font-size: 1.1em;
}
.profileByUsernamePublic fieldset header .profileMoreDetails div div p {
  max-width: 0 0 0.5rem;
}
.profileByUsernamePublic fieldset header .profileMoreDetails div a {
  color: #ff6701;
  font-size: 0.9em;
}
.profileByUsernamePublic fieldset header .profileMoreDetails div a span {
  font-size: 0.8em;
}
.profileByUsernamePublic fieldset div .profileDetails .nav-item .nav-link {
  color: #989898;
  font-weight: bold;
}
.profileByUsernamePublic fieldset div .profileDetails .nav-item .active {
  color: #bddff2;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview {
  margin: 0 0 1.5em;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview h3 {
  margin: 0 0 0.9em;
  padding: 5px 0 0 8px;
  font-size: 1.2em !important;
  font-weight: 300;
  font-family: "Manjari", sans-serif;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview h3 a {
  color: #343434 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 4ch;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview img {
  margin: 0;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview p {
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
  font-size: 1.2em !important;
  color: #2C2470;
  margin: 0;
  padding: 0 4px 0 8px;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview p em {
  color: #5f9ed5;
  font-style: normal;
  font-size: 0.8em;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview span {
  margin: 0;
  font-size: 1.3em;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview span em {
  font-style: normal;
  font-size: 0.8em;
}
.profileByUsernamePublic fieldset div .profileDetails .tab-content .ProfileProductPreview .ProfileProductLink a {
  font-size: 0.8em;
  background: #ff6701;
  color: #fff;
  font-weight: bold;
  padding: 0.5em;
}

.QRContactForm .ContactFormDisclaimer p {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.QRContactForm .ContactFormDisclaimer p span {
  font-size: 17px;
  margin: 0 0.2rem 0 0;
  color: #ffc24d;
}
.QRContactForm #RegisterContactForm label {
  color: #ffffff;
}
.QRContactForm #RegisterContactForm label span {
  font-size: 0.7em;
  color: #ffa6a6;
}
.QRContactForm #RegisterContactForm label span:first-child {
  font-size: 1em;
  color: #ffc24d;
}
.QRContactForm #RegisterContactForm input[type=text]:focus {
  background-color: #fff;
  border-color: #ffc24d;
  outline: 0;
  box-shadow: 0 0 7px 0.1rem #ffc24d;
  border: 0 !important;
}
.QRContactForm #RegisterContactForm input[type=button] {
  width: 100%;
  padding: 5px 0 9px 0;
  background: #ffc24d;
  border: 0;
  font-size: 18px;
  color: #000000;
  margin: 0;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}
.QRContactForm #RegisterContactForm select:focus {
  background-color: #fff;
  border-color: #ffc24d;
  outline: 0;
  box-shadow: 0 0 7px 0.1rem #ffc24d;
  border: 0 !important;
}
.QRContactForm #RegisterContactForm .Error-Contactfield {
  display: none;
  color: #ffa6a6;
  font-size: 1.2em;
}
.QRContactForm #RegisterContactForm .Error-Contactfield small {
  margin: 2.2% 0 0 1%;
}
.QRContactForm #RegisterContactForm .Error-Contactfield small span {
  padding: 0 1.5% 0 0;
  font-size: 1.5em;
}
.QRContactForm #RegisterContactForm .Error-EmailFormat {
  display: none;
  color: #ffa6a6;
  font-size: 1.2em;
}
.QRContactForm #RegisterContactForm .Error-EmailFormat small {
  margin: 2.2% 0 0 1%;
}
.QRContactForm #RegisterContactForm .Error-EmailFormat small span {
  padding: 0 1.5% 0 0;
  font-size: 1.5em;
}
.QRContactForm .registerMessage .trueResponse {
  display: none;
}
.QRContactForm .registerMessage .trueResponse p {
  font-size: 1em;
}
.QRContactForm .registerMessage .trueResponse p span {
  font-size: 1.2em;
  margin: 0.1rem 0 0;
}
.QRContactForm .registerMessage .trueResponse .contact-qrResponse button {
  border: 0;
  background: none;
}
.QRContactForm .registerMessage .trueResponse .contact-qrResponse button img {
  width: 50%;
}
.QRContactForm .registerMessage .errorResponse {
  display: none;
}
.QRContactForm .registerMessage .errorResponse p {
  font-size: 1em;
}
.QRContactForm .registerMessage .errorResponse p span {
  font-size: 1.2em;
  margin: 0.1rem 0 0;
}
.QRContactForm #EditContactForm label {
  color: #ffffff;
}
.QRContactForm #EditContactForm label span {
  font-size: 0.7em;
  color: #ffa6a6;
}
.QRContactForm #EditContactForm label span:first-child {
  font-size: 1em;
  color: #ffc24d;
}
.QRContactForm #EditContactForm input[type=text]:focus {
  background-color: #fff;
  border-color: #ffc24d;
  outline: 0;
  box-shadow: 0 0 7px 0.1rem #ffc24d;
  border: 0 !important;
}
.QRContactForm #EditContactForm input[type=button] {
  width: 100%;
  padding: 5px 0 9px 0;
  background: #ffc24d;
  border: 0;
  font-size: 18px;
  color: #000000;
  margin: 0;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}
.QRContactForm #EditContactForm select:focus {
  background-color: #fff;
  border-color: #ffc24d;
  outline: 0;
  box-shadow: 0 0 7px 0.1rem #ffc24d;
  border: 0 !important;
}
.QRContactForm #EditContactForm .Error-Contactfield {
  display: none;
  color: #ffa6a6;
  font-size: 1.2em;
}
.QRContactForm #EditContactForm .Error-Contactfield small {
  margin: 2.2% 0 0 1%;
}
.QRContactForm #EditContactForm .Error-Contactfield small span {
  padding: 0 1.5% 0 0;
  font-size: 1.5em;
}
.QRContactForm #EditContactForm .Error-EmailFormat {
  display: none;
  color: #ffa6a6;
  font-size: 1.2em;
}
.QRContactForm #EditContactForm .Error-EmailFormat small {
  margin: 2.2% 0 0 1%;
}
.QRContactForm #EditContactForm .Error-EmailFormat small span {
  padding: 0 1.5% 0 0;
  font-size: 1.5em;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-container input {
  width: 100%;
  padding: 10px 10px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.search-container .deletebtn-holder {
  position: absolute;
  z-index: 33;
  top: 5px;
  right: 6px;
}
.search-container .deletebtn-holder button {
  border: 0;
  background: none;
  outline: none;
}
.search-container .deletebtn-holder button span {
  color: #999;
}

.profileList ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.profileList ul .profile-item {
  display: flex;
  align-items: center;
  padding: 0.2 0;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: background-color 0.3s;
}
.profileList ul .profile-item:hover {
  background-color: #f0f0f0;
}
.profileList ul .profile-item .profileControl .row button {
  background: none;
  border: 1px solid #ccc;
  outline: none;
}
.profileList ul .profile-item .profileControl .row button:focus {
  background: none;
  border: 1px solid #1580a6;
  outline: none;
}
.profileList ul .profile-item .profileControl .row button span {
  font-size: 1.2em;
}
.profileList ul .profile-item .profile-content .profile-icon {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.7em;
}
.profileList ul .profile-item .profile-content .profile-name {
  font-size: 18px;
  color: #1580a6;
}
.profileList ul .profile-item .profile-content small {
  margin: 0 0 0 2%;
}
.profileList ul .profile-item .profile-content a span {
  color: #1580a6;
}
@media (max-width: 75em) {
  .profileList ul .profile-item .profile-extra {
    display: block;
  }
}
@media (max-width: 56.25em) {
  .profileList ul .profile-item .profile-extra {
    display: block;
  }
}
@media (max-width: 48em) {
  .profileList ul .profile-item .profile-extra {
    display: none;
  }
}
@media (max-width: 37.5em) {
  .profileList ul .profile-item .profile-extra {
    display: none;
  }
}
@media (min-width: 112.5em) {
  .profileList ul .profile-item .profile-extra {
    display: block;
  }
}
.profileList ul .profile-item .profile-extra small {
  padding: 0;
  color: #1580a6;
}
.profileList ul .profile-item .profile-extra p {
  padding: 0 0 0.3rem;
  font-size: 0.9em;
  line-height: 17px;
}
@media (max-width: 75em) {
  .profileList ul .profile-item .profile-qr {
    display: block;
  }
}
@media (max-width: 56.25em) {
  .profileList ul .profile-item .profile-qr {
    display: block;
  }
}
@media (max-width: 48em) {
  .profileList ul .profile-item .profile-qr {
    display: none;
  }
}
@media (max-width: 37.5em) {
  .profileList ul .profile-item .profile-qr {
    display: none;
  }
}
@media (min-width: 112.5em) {
  .profileList ul .profile-item .profile-qr {
    display: block;
  }
}
.profileList ul .profile-item .profile-qr button {
  border: 0;
  background: none;
}
.profileList ul .profile-item .profile-qr button img {
  width: 50%;
}
.profileList ul .profile-item .icon-active-qr {
  color: #1580a6; /* Color para el ícono de QR cuando está activo */
}
.profileList ul .profile-item .icon-active-extra {
  color: #1580a6; /* Color para el ícono de información extra cuando está activo */
}
.profileList ul .profile-item .icon-inactive {
  color: black; /* Color por defecto cuando el ícono no está activo */
}

.edited-contact {
  border-color: #28eb77 !important;
  box-shadow: 0 3px 5px -4px #2ba03f;
  border-top: 2px solid #28eb77 !important;
}/*# sourceMappingURL=main.css.map */