:root {
     color-scheme: light;
     --primary-color: var(--d0);
     --white-color: #fff;
     --black-color: #000;
     --filter-white: brightness(0) saturate(100%) invert();
}

body {
     background-color: white;
     color: black;
     padding-right: 0px !important;
     font-size: 16px;
     font-family: Montserrat, sans-serif;
     background-image: linear-gradient(to bottom, var(--primary-color) 0% 50%, var(--l2) 100% 100%);
     background-position: center;
     background-attachment: fixed;
     margin: 0;
     display: grid;
     place-items: center;
     box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
     .prevent-select {
          -webkit-user-select: none; /* Safari */
          -ms-user-select: none; /* IE 10 and IE 11 */
          user-select: none; /* Standard syntax */
     }
}
.prevent-select-full {
     -webkit-user-select: none; /* Safari */
     -ms-user-select: none; /* IE 10 and IE 11 */
     user-select: none; /* Standard syntax */
}

.backgroundCard {
     font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
     font-size: 12px;
     color: var(--contrast-color);
     width: 100%;
     height: 100vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
}

.loader {
     position: fixed;
     top: 0;
     left: 0;
     background-color: #FFFFFF60;
     z-index: 999;
     width: 100%;
     height: 100%;
     display: grid;
     place-items: center;
}
.loader i {
     font-size: 3rem;
     color: var(--primary-color);
     animation: rotate 2000ms infinite linear;
}
@keyframes rotate {
     from {
          transform: rotate(0deg);
     }
     to {
          transform: rotate(360deg);
     }
}

.hidden { opacity: 0; }
.remove { display: none !important; }

.toClick, .toClickHere { cursor: pointer; }

.noScroll { overflow: hidden; }

.txt3lines {
     text-wrap: balance;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
}

.noresult {
     display: none;
     text-align: center;
}

.tagFilter {
     margin-bottom: 0.5rem;
     display: none;
}

.tagFilter span {
     background-color: var(--contrast-color);
     color: var(--primary-color);
     border: 1px solid var(--third-color);
     padding: 5px 15px;
     border-radius: 10px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
}

.toEdit {
     border: 2px dashed !important;
     padding-block: 20px 8px;
     width: 90% !important;
}
.toEdit > span:nth-of-type(1) {
     position: absolute;
     top: 5px;
     left: 5px;
     font-size: 12px;
     line-height: 10px;
     font-weight: 600;
}


.onlyMobile {
     display: none;
}

@media only screen and (max-width: 600px) {
     .onlyMobile {
          display: inherit;
     }
}

.listResp001 {
     grid-template-columns: repeat(6, 1fr);
}
@media only screen and (max-width: 1300px) and (min-width: 1001px) {
     .listResp001 {
          grid-template-columns: repeat(5, 1fr);
     }
}
@media only screen and (max-width: 1000px) and (min-width: 659px) {
     .listResp001 {
          grid-template-columns: repeat(3, 1fr);
     }
}
@media only screen and (max-width: 658px) and (min-width: 351px) {
     .listResp001 {
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     }
}
@media only screen and (max-width: 350px) {
     .listResp001 {
          grid-template-columns: repeat(2, 1fr);
     }
     .listResp001 h1 {
          font-size: 12px !important;
     }
     .listResp001 p {
          font-size: 12px !important;
          height: 30px;
          justify-content: center;
     }
     .listResp001 .butt.oi {
          width: 30px;
          height: 30px;
     }
     .listResp001 i {
          font-size: 12px !important;
     }
}

.itemTitle{
     display: block;
     max-width: 100%;
     word-wrap: break-word;
     overflow-wrap: break-word;
     white-space: normal;
}

.ql-align-right {
	text-align: right !important;
}
.ql-align-center {
	text-align: center !important;
}
.ql-align-left {
	text-align: left !important;
}
.ql-align-justify {
	text-align: justify !important;
}

.ai-c { align-items: center; }
.ai-fs { align-items: flex-start; }
.ai-l { align-items: left; }
.ai-r { align-items: right; }
.ai-s { align-items: stretch; }

.as-b { align-self: baseline; }
.as-c { align-self: center; }
.as-fe { align-self: flex-end; }
.as-fs { align-self: flex-start; }

.ar-1 { aspect-ratio: 1; }

.b-1 { border: 1px solid var(--primary-color); }
.b-1w { border: 1px solid var(--white-color); }
.b-2d { border: 2px dashed var(--primary-color); }

.br-5 { border-radius: 5px; }
.br-10 { border-radius: 10px; }
.br-50 { border-radius: 50%; }

.bs-gray { box-shadow: 5px 5px 10px #11111130; }

.bt-0 { bottom: 0; }
.bt-1 { bottom: 1rem; }
.bt-2 { bottom: 2rem; }
.bt-3 { bottom: 3rem; }
.bt-4 { bottom: 4rem; }
.bt-5 { bottom: 5rem; }

.c-p { cursor: pointer; }

.f-w { filter: var(--filter-white); }

.flx { display: flex; }
.flx-col {
     display: flex;
     flex-direction: column;
}
.flx-w { flex-wrap: wrap; }
.flx-wr { flex-wrap: wrap-reverse; }

.flxgr-1 { flex-grow: 1;}

.fs-i { font-size: initial; }
.fs-05 { font-size: 0.5rem; }
.fs-08 { font-size: 0.8rem; }
.fs-1 { font-size: 1rem; }
.fs-2 { font-size: 2rem; }
.fs-3 { font-size: 3rem; }
.fs-4 { font-size: 4rem; }
.fs-5 { font-size: 5rem; }
.fs-6 { font-size: 6rem; }

.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.g-05 { gap: 0.5rem; }
.g-1 { gap: 1rem; }
.g-2 { gap: 2rem; }

.grid { display: grid; }
.grid-c { display: grid; place-items: center; }

.gtc-2 { grid-template-columns: repeat(2, 1fr); }
.gtc-3 { grid-template-columns: repeat(3, 1fr); }
.gtc-4 { grid-template-columns: repeat(4, 24%); }
.gtc-5 { grid-template-columns: repeat(5, 20%); }

.gtc-41 { grid-template-columns: 4fr 1fr; }
.gtc-411 { grid-template-columns: 4fr 1fr 1fr; }

.h-30 { height: 30%; }
.h-50 { height: 50%; }
.h-70 { height: 70%; }
.h-80 { height: 80%; }
.h-90 { height: 90%; }
.h-100 { height: 100%; }

.h-80vh { height: 80vh; }
.h-90vh { height: 90vh; }
.h-100vh { height: 100vh; }

.jc-c { justify-content: center; }
.jc-sa { justify-content: space-around; }
.jc-sb { justify-content: space-between; }
.jc-se { justify-content: space-evenly; }
.jc-fs { justify-content: flex-start; }
.jc-r { justify-content: right; }

.l-5 { left: 5%; }

.lh-2 { line-height: 2rem; }
.lh-4 { line-height: 4rem; }

.m-0 { margin: 0rem !important; }
.m-1 { margin: 1rem; }

.mb-1 { margin-block: 1rem; }
.mb-2 { margin-block: 2rem; }
.mb-3 { margin-block: 3rem; }
.mb-4 { margin-block: 4rem; }
.mb-5 { margin-block: 5rem; }
.mb-6 { margin-block: 6rem; }

.mbt-1 { margin-bottom: 1rem; }
.mbt-2 { margin-bottom: 2rem; }
.mbt-3 { margin-bottom: 3rem; }
.mbt-4 { margin-bottom: 4rem; }
.mbt-5 { margin-bottom: 5rem; }

.mi-1 { margin-inline: 1rem; }

.ml-a { margin-left: auto ;}
.ml-1 { margin-left: 1rem; }
.ml-2 { margin-left: 2rem; }
.ml-3 { margin-left: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mr-a { margin-right: auto ;}
.mr-1 { margin-right: 1rem; }
.mr-2 { margin-right: 2rem; }
.mr-3 { margin-right: 3rem; }

.mh-10 { max-height: 10rem; }

.mt-1 { margin-top: 1rem; }

.maxw-100 { max-width: 100%; }
.maxw-90 { max-width: 90%; }
.maxw-80 { max-width: 80%; }
.maxw-70 { max-width: 70%; }
.maxw-60 { max-width: 60%; }
.maxw-50 { max-width: 50%; }
.maxw-25 { max-width: 25%; }
.maxw-20 { max-width: 20%; }
.maxw-10 { max-width: 10%; }

.minw-100 { min-width: 100%; }

.os-d {outline-style: double;}

.ow-bw { overflow-wrap: break-word; }

.p-0 { padding: 0 !important; }
.p-half { padding: 0.5rem; }
.p-1 { padding: 1rem; }
.p-1-0 { padding: 1rem 0; }
.p-10px { padding: 10px; }

.pb-1 { padding-block: 1rem; }
.pb-2 { padding-block: 2rem; }
.pb-3 { padding-block: 3rem; }
.pb-4 { padding-block: 4rem; }
.pb-5 { padding-block: 5rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pbt-1 { padding-bottom: 1rem; }
.pbt-2 { padding-bottom: 2rem; }
.pbt-5 { padding-bottom: 5rem; }
.pbt-10 { padding-bottom: 10rem; }

.pi-1 { padding-inline: 1rem; }
.pi-2 { padding-inline: 2rem; }

.pl-1 { padding-left: 1rem; }

.p-a { position: absolute; }
.p-f { position: fixed; }
.p-r { position: relative; }
.p-s { position: static; }
.p-sticky {
     position: -webkit-sticky;
     position: sticky;
}

.r-0 { right: 0; }
.r-1 { right: 1rem; }
.r-5 { right: 5%; }

.rot-90 { transform: rotate(90deg); }
.rot-180 { transform: rotate(180deg); }
.rot-270 { transform: rotate(270deg); }

.t {color:var(--white-color); background-color:var(--primary-color)}
.t-i {color:var(--primary-color); background-color:var(--white-color)}
.t-white {color:var(--black-color); background-color:var(--white-color)}
.t-black {color:var(--white-color); background-color:var(--black-color)}
.t-txt {color:var(--primary-color) !important;}
.t-i-txt {color:var(--white-color)}
.t-l5 {color:var(--black-color); background-color:var(--l5)}
.t-l4 {color:var(--black-color); background-color:var(--l4)}
.t-l3 {color:var(--white-color); background-color:var(--l3)}
.t-l2 {color:var(--white-color); background-color:var(--l2)}
.t-l1 {color:var(--white-color); background-color:var(--l1)}
.t-d1 {color:var(--white-color); background-color:var(--d1)}
.t-d2 {color:var(--white-color); background-color:var(--d2)}
.t-d3 {color:var(--white-color); background-color:var(--d3)}
.t-d4 {color:var(--white-color); background-color:var(--d4)}
.t-d5 {color:var(--white-color); background-color:var(--d5)}
.t-light {color:var(--black-color); background-color:var(--l5)}
.t-dark {color:var(--white-color); background-color:var(--d5)}
.t-action {color:var(--white-color); background-color:var(--d5)}

.t > svg { fill:var(--white-color); }

.t.th:hover {color:var(--primary-color); background-color:var(--white-color)}
.t-i.th:hover {color:var(--white-color); background-color:var(--primary-color)}
.t-white.th:hover {color:var(--white-color); background-color:var(--black-color)}
.t-black.th:hover {color:var(--black-color); background-color:var(--white-color)}
.t-l5.th:hover {color:var(--white-color); background-color:var(--d1)}
.t-l4.th:hover {color:var(--white-color); background-color:var(--d2)}
.t-l3.th:hover {color:var(--white-color); background-color:var(--d3)}
.t-l2.th:hover {color:var(--white-color); background-color:var(--d4)}
.t-l1.th:hover {color:var(--white-color); background-color:var(--d5)}
.t-d1.th:hover {color:var(--white-color); background-color:var(--l5)}
.t-d2.th:hover {color:var(--white-color); background-color:var(--l4)}
.t-d3.th:hover {color:var(--white-color); background-color:var(--l3)}
.t-d4.th:hover {color:var(--white-color); background-color:var(--l2)}
.t-d5.th:hover {color:var(--white-color); background-color:var(--l1)}

.t-wrn {color:var(--black-color); background-color:YELLOW}
.t-scs {color:var(--white-color); background-color:GREEN}
.t-dng {color:var(--white-color); background-color:RED}

.ta-c { text-align: center; }
.ta-j { text-align: justify; }
.ta-l { text-align: left; }
.ta-r { text-align: right; }

.td-lt { text-decoration: line-through; }

.tt-u { text-transform: uppercase; }
.tt-l { text-transform: lowercase; }
.tt-fc { text-transform: capitalize; }

.tp-1 { top: 1rem; }

.va-m { vertical-align: middle; }

.w-100 { width: 100%; }
.w-95 { width: 95%; }
.w-90 { width: 90%; }
.w-80 { width: 80%; }
.w-70 { width: 70%; }
.w-60 { width: 60%; }
.w-50 { width: 50%; }
.w-40 { width: 40%; }
.w-30 { width: 30%; }
.w-25 { width: 25%; }
.w-20 { width: 20%; }
.w-10 { width: 10%; }
.w-5 { width: 5%; }

.w-80-100 { width: 80%; }
@media only screen and (max-width: 350px) {
  .w-80-100 { width: 100%; }
}

.ws-nw { white-space: nowrap; }

.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }
.z-6 { z-index: 6; }
.z-7 { z-index: 7; }
.z-8 { z-index: 8; }
.z-9 { z-index: 9; }
.z-10{ z-index: 10; }
.z-12{ z-index: 12; }
.z-20 { z-index: 20; }

.t2 {
     color:var(--d0c-2, --black-color);
     background-color:var(--d0-2, --primary-color)
}
.t2 > svg { fill:var(--d0c-2, --black-color); }

.card {
     width: 450px;
     display: flex;
     flex-direction: column;
     overflow: hidden;
     box-shadow: 0px 1rem 1.5rem var(--primary-color);
     min-height: 80vh;
     align-items: center;
}

@media only screen and (max-width: 600px) {
     .card {
          width: 100vw !important;
          margin: 0;
          border-radius: 0;
     }
}

.avatar.mini {
     width: 20px;
     height: 20px;
     border-radius: 50%;
}

.banner {
     height: 11.5rem;
}

.tag {
     padding: 6px;
     border-radius: 10px;
}

.border-steps-down {
     box-shadow: 0 15px var(--l1), 0 30px var(--l2);
     margin-bottom: 2rem;
}

.border-steps-up {
     box-shadow: 0 -15px var(--l1), 0 -30px var(--l2);
     margin-top: 2rem;
}

.butt {
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 12px;
     padding: 10px;
     transition-duration: 0.4s;
     cursor: pointer;
}

.butt.i {
     padding: 10px 16px 10px 16px;
     gap: 1rem;
}
.butt > i{
     font-size: 20px;
}
.butt > svg{
     width: 20px;
}

.butt.oi {
     width: 40px;
     height: 40px;
}
.butt.oi.sml3 {
     width: 30px;
     height: 30px;
     border-radius: 20%;
}
.butt.oi.sml {
     width: 20px;
     height: 20px;
}
.butt.oi.sml > i {
     font-size: 10px;
}
.butt.oi.mini {
     width: 10px;
     height: 10px;
     border-radius: 30%;
}
.butt.oi.mini > i {
     font-size: 10px;
}

.butt p {
     flex: 1 1 auto;
     font-size: 20px;
     text-align: center;
     text-transform: uppercase;
}

.butt:hover,
.butt:focus {

}

.butt:disabled {
     background-color: GREY;
     color: WHITE;
     box-shadow: none;
     cursor: default;
     border: none;
}
.butt:disabled p {
     color: var(--contrast-color);
}
.ic {
     width: 100%;
     height: 100%;
     display: block;
     background-repeat: no-repeat;
     background-position: center;
     background-size: 70%;
}

.ic-share {
     background-image: url( 'https://cartoes.click/Assets/svg/share-svgrepo-com.svg' );
}

.ic-wpp.color {
     background-image: url( 'https://cartoes.click/Assets/svg/whatsapp-symbol-logo-svgrepo-com.svg' );
     filter: none !important;
}

.ic-wpp {
     background-image: url( 'https://cartoes.click/Assets/svg/whatsapp-svgrepo-com.svg' );
}

.ic-tel {
     background-image: url( 'https://cartoes.click/Assets/svg/phone-call-svgrepo-com.svg' );
}
.panelAlert {
     position: fixed;
     top: 55px;
     left: 0;
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     z-index: 50;
}

.panelAlert .alert {
     width: 90%;
     padding: 0.5rem 1rem;
     border-radius: 10px;
     margin-top: 10px;
     cursor: pointer;
     text-align: center;
     word-wrap: break-word;      /* IE 5.5-7 */
     white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
     white-space: pre-wrap;      /* current browsers */
}

.alertRed {
     font-weight: 800;
     color: RED;
}

body.splash{
     overflow: hidden;
}

#splash {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     z-index: 1000;
     display: grid;
     place-items: center;
     transition: opacity 1s;
}

#splash img {
     animation: blink-animation 3s infinite;
}

@keyframes blink-animation {
     0% {
          opacity: 0;
     }
     50% {
          opacity: 1;
     }
     100% {
          opacity: 0;
     }
}

.draggable {
     cursor: move;

     &.is-dragging {
          opacity: 0.5;
     }
}


.input {
     border: 1px solid var(--primary-color);
     padding: 10px;
     border-radius: 12px;
}

.select {
     border: 1px solid var(--primary-color);
     padding: 10px;
     border-radius: 12px;
     -webkit-appearance: none;
     -moz-appearance: none;
     background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
     background-repeat: no-repeat;
     background-position-x: 100%;
     background-position-y: 50%;
}

fieldset input[type="radio"],
fieldset input[type="checkbox"] {
     position: absolute;
     width: 0;
     height: 0;
     visibility: hidden;
}
fieldset input[type="radio"]:checked + label,
fieldset input[type="checkbox"]:checked + label {
     background-color: var(--primary-color);
     padding: 10px 20px;
     color: var(--white-color);
     border-radius: 20px;
     border: 1px solid var(--primary-color);
     cursor: pointer;
     display: grid;
     place-items: center;
}
fieldset input[type="radio"]:not(:checked) + label,
fieldset input[type="checkbox"]:not(:checked) + label {
     background-color: var(--white-color);
     padding: 10px 20px;
     color: var(--primary-color);
     border-radius: 20px;
     border: 1px solid var(--primary-color);
     cursor: pointer;
     display: grid;
     place-items: center;
}

input[type="checkbox"].reset {
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}

.modal {
     position: fixed;
     top: 0;
     height: 100%;
}

.modal .close {
     background-color: transparent;
     border: none;
     cursor: pointer;
     font-size: 25px;
     text-align: right;
     position: absolute;
     top: 0;
     left: 0;
     padding: 1.5rem;
}

.inner {
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     overflow-x: hidden;
     overflow-y: auto;
     scrollbar-color: var(--l2) var(--l3);
}

.inner > * {
     flex: 1 1 auto;
}

#divBagButton #bagButton:before{
     color: #FFFFFF;
     content: attr(data-count);
     background: var(--d3);
     padding: 3px;
     position: absolute;
     top: -5px;
     left: -5px;
     border-radius: 50%;
     width: 25px;
     height: 25px;
     display: flex;
     align-items: center;
     justify-content: center;
}

.bagCheckout {
     font-size: 12px;
     position: relative;
     height: 100%;
}

.bagCheckout .head-title {
     width: 100%;
     display: flex;
     align-items: center;
     flex-direction: column;
     justify-content: end;
     background-color: var(--primary-color);
     padding-block: 3rem 1rem;
     color: var(--contrast-color);
}

.bagCheckout img {
     width: 50px;
     border-radius: 100%;
     object-fit: cover;
     height: 50px;
}

.bagCheckout thead {
     font-weight: 600;
}

.bagCheckout tbody:not(:last-child):has(tr:not(.toEdit)) {
     border-bottom: 2pt solid #111;
}

.bagCheckout tbody tr:not(:last-child):not(.toEdit) {
     border-bottom: 1pt solid #111;
}

.bagCheckout td {
     vertical-align: middle;
     padding-block: 1rem;
}


.bagCheckout td:nth-child(1) {
     text-align: center;
}

.bagCheckout td:nth-child(2) {
     width: 30%;
}

.bagCheckout td:nth-child(3),
.bagCheckout td:nth-child(4) {
     text-align: center;
}

.bagCheckout td:nth-child(4) > div {
     display: flex;
     align-items: center;
     justify-content: space-evenly;
     height: 100%;
}

.scrollGallery {
     position: relative;
}

.scrollContent{
     padding-left: 0;
     margin: auto;
     display: flex;
     overflow: auto;
     scroll-snap-type: x mandatory;
     gap: 10px;
     align-items: center;
     /* scroll-behavior: smooth; */
     padding-bottom: 1rem;
}

.scrollContent div{
     scroll-snap-align: start;
     cursor: pointer;
}

.scrollContent h3 {
     margin: 0;
     text-align: center;
     font-size: 12px;
     font-weight: 600;
}

.scrollContent .active {
     background-color: var(--primary-color);
     color: var(--white-color);
}

.scrollContent .active h3 {
     font-weight: 800;
}

.scrollGallery .btnsc {
     position: absolute;
     display: flex;
     align-items: center;
     width: 30px;
     color: var(--primary-color);
     cursor: pointer;
     height: 100%;
     padding-bottom: 1rem;
}

.scrollGallery .btnsc.prev {
     left: 0;
     justify-content: left;
     padding-left: 10px;
     background: linear-gradient(to right,var(--white-color) 50%,rgba(255,255,255,0) 100%);
}

.scrollGallery .btnsc.next {
     right: 0;
     justify-content: right;
     padding-right: 10px;
     background: linear-gradient(to left,var(--white-color) 50%,rgba(255,255,255,0) 100%);
}

.scrollContent.tiny div {
     padding: 0.5rem 1rem;
     white-space: nowrap;
     border-radius: 10px;
}

.scrollContent.full div {
     min-width: 100%;
     display: grid;
     place-items: center;
}

.scrollContent.full ~ .btnsc {
  /* transform: translateY(100%); */
}

@media only screen and (min-width: 600px) {
     .scrollGallery .btnsc.next,
     .scrollGallery .btnsc.prev {
          display: none;
     }
}
@media only screen and (max-width: 600px) {
     .scrollContent {
          margin: 0;
          width: 100%;
     }
}

.slider {
     height: 300px;
     display: flex;
}
.slider.is-animating {
     transition: transform 400ms cubic-bezier(0.5, 0, 0.5, 1);
}

.slider-pagination {
     pointer-events: none;
     text-align: center;
     width: 100%;
}
.slider-pagination > * {
     border-radius: 50%;
     box-shadow: 0 0 0 2px var(--primary-color);
     display: inline-block;
     height: 6px;
     margin-left: 4px;
     margin-right: 4px;
     transition: background-color 250ms;
     width: 6px;
}
.slider-pagination > *.is-active {
     background-color: var(--primary-color);
}

.slider-panel {
     padding-top: 10%;
     width: 100%;
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
}

.has-slider {
     <!-- overflow: hidden; -->
     position: relative;
     width: 100%;
}

.checkout {
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
     padding: 1rem;
}
.modal-zoom {
     display: grid;
     place-items: center;
     height: 100%;
     padding: 1rem;
}

.modal-zoom figure.zoom {
     background-position: 50% 50%;
     position: relative;
     width: 100%;
     overflow: hidden;
     cursor: zoom-in;
}
.modal-zoom figure.zoom img {
     transition: opacity 0.5s;
     display: block;
     max-width: 100%;
     max-height: 100vh;
}
.modal-zoom figure.zoom img:hover {
     opacity: 0;
}

.rotated {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg); /* IE 9 */
  -moz-transform: rotate(90deg); /* Firefox */
  -webkit-transform: rotate(90deg); /* Safari and Chrome */
  -o-transform: rotate(90deg); /* Opera */
  width: 100vh !important;
  max-width: none;
}
/* Chrome, Safari, Edge, Opera */
.mask::-webkit-outer-spin-button,
.mask::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.mask[type=number] {
  -moz-appearance: textfield;
}
.esqueleton .img {
     width: 52px;
     height: 52px;
     background-color: #ccc;
     border-radius: 25%;
     background-image: linear-gradient(90deg, #F4F4F4 0px, rgba(229, 229, 229, 0.8) 40px, #F4F4F4 80px);
     background-size: 600px;
     animation: shine-avatar 2s infinite ease-out;
}
.esqueleton .line {
     width: 140px;
     height: 16px;
     border-radius: 7px;
     background-image: linear-gradient(90deg, #F4F4F4 0px, rgba(229, 229, 229, 0.8) 40px, #F4F4F4 80px);
     background-size: 600px;
     animation: shine-avatar 2s infinite ease-out;
}
@keyframes shine-lines {
     0% {
          background-position: -100px;
     }
     40%, 100% {
          background-position: 140px;
     }
}
@keyframes shine-avatar {
     0% {
          background-position: -32px;
     }
     40%, 100% {
          background-position: 208px;
     }
}

.ribbon {
  position: absolute;
  left: -5px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(var(--d5) 0%, var(--d1) 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px; left: -21px;
}
.ribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid var(--d1);
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid var(--d1);
}
.ribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid var(--d1);
  border-bottom: 3px solid transparent;
  border-top: 3px solid var(--d1);
}
