:root {
--white: #fff;
--black: #000;
--primary:  #5c285c;
--secondary:#d9c3ad;
--third:    #2e133e;
}   
body {
margin: 0;
color: #222; background-image: url(//pood.bonex.online/wp-content/themes/nailedit/assets/images/bg.webp) ;
background-repeat: no-repeat;
background-size: cover;
}
a {
color: var(--primary);
}
a:hover,
a:focus {
color: var(--third);
}
.site-header,
.site-footer {
background: #131313;
color: #fff;
padding: 1.5rem 2rem;
}
.site-title {
margin: 0;
font-size: 2rem;
}
.site-description {
margin: 0.25rem 0 0;
color: #ccc;
}
.post {
margin-bottom: 2.5rem;
}
.post-title {
margin: 0 0 0.5rem;
}
.post-meta {
font-size: 0.9rem;
color: #666;
}
footer svg {
fill: var(--secondary);
}
footer svg:hover {
fill: white;
}
.nailedit-products {
margin-top: 3rem;
padding: 2rem;
border: 1px solid #eee;
border-radius: 12px;
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}
.nailedit-products-heading {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
font-family: nailedit;
}
.nailedit-products-heading h2 {
margin: 0;
font-size: 1.75rem;
}
.nailedit-products-grid {
display: grid;
gap: 1.5rem;
}
.nailedit-products-grid.columns-4 {
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.nailedit-products-grid.columns-3 {
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.nailedit-products-grid.columns-2 {
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.nailedit-product-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.05);
transition: transform 0.2s ease, box-shadow 0.2s ease;
display: flex;
flex-direction: column;
}
.nailedit-product-card:hover {
transform: translateY(-6px);
box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}
.nailedit-product-thumb img {
width: 100%;
height: autos;
object-fit: cover;
}
@media screen and (min-width: 1024px) {
.nailedit-product-thumb img {
width: 100%;
height: 220px;
object-fit: cover;
}
}
@media screen and (max-width: 1024px){
.vvcont {
order:-1;
}
}
.nailedit-product-body {
padding: 1.25rem;
display: flex;
flex-direction: column;
gap: 0.65rem;
}
.nailedit-product-title {
margin: 0;
font-size: 1.1rem;
}
.nailedit-product-price {
font-weight: 600;
color: var(--primary);
margin: 0;
}
.nailedit-product-desc {
margin: 0;
color: #555;
line-height: 1.5;
font-size: 0.95rem;
}
.nailedit-products-error {
padding: 1rem;
border-radius: 8px;
background: #fee;
border: 1px solid #f5c2c7;
color: var(--primary);
} @media screen and (min-width: 1024px) {
.nailedit-product-detail {
padding: 3rem 2rem;
}
}
.nailedit-product-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
}
.nailedit-product-gallery {
display: flex;
flex-direction: column;
gap: 1rem;
}
.nailedit-gallery-main {
width: 100%;
border-radius: 12px;
overflow: hidden;
border: 1px solid #eee;
background: #fafafa;
}
.nailedit-gallery-main img {
width: 100%;
height: auto;
display: block;
}
.nailedit-gallery-thumbs {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
.nailedit-thumb {
width: 70px;
height: 70px;
object-fit: cover;
cursor: pointer;
transition: border-color 0.2s ease;
}
.nailedit-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.nailedit-thumb:hover,
.nailedit-thumb.active {
border-color: var(--primary);
} #nailedit-thumbs {
scrollbar-width: thin;
scrollbar-color: #cbd5e1 transparent;
}
#nailedit-thumbs::-webkit-scrollbar {
width: 6px;
}
#nailedit-thumbs::-webkit-scrollbar-track {
background: transparent;
}
#nailedit-thumbs::-webkit-scrollbar-thumb {
background-color: #cbd5e1;
border-radius: 3px;
}
#nailedit-thumbs::-webkit-scrollbar-thumb:hover {
background-color: #94a3b8;
} .nailedit-product-swiper .swiper-pagination-bullet {
background: var(--primary) !important;
opacity: 0.3;
width: 8px;
height: 8px;
}
.nailedit-product-swiper .swiper-pagination-bullet-active {
background: var(--primary);
opacity: 1;
}
.nailedit-no-image {
padding: 4rem 2rem;
text-align: center;
background: #f5f5f5;
border-radius: 12px;
color: #999;
}
.nailedit-product-info {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.nailedit-product-name {
margin: 0;
font-size: 2.25rem;
line-height: 1.2;
}
.nailedit-product-sku {
margin: 0;
color: #666;
font-size: 0.95rem;
}
.nailedit-product-price-large {
margin: 0;
font-size: 2rem;
font-weight: 700;
color: var(--primary);
}
.nailedit-product-description {
line-height: 1.7;
color: #444;
}
.nailedit-add-to-cart-btn {
display: inline-block;
padding: 1rem 2rem;
color: #fff;
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s ease, transform 0.1s ease;
align-self: flex-start;
}
.nailedit-add-to-cart-btn:hover:not(:disabled) {
background: var(--third);
transform: translateY(-2px);
}
.nailedit-add-to-cart-btn:disabled {
background: #ccc;
cursor: not-allowed;
}
.nailedit-cart-message {
padding: 0.75rem 1rem;
border-radius: 6px;
font-weight: 500;
min-height: 1rem;
} input.qty-input[type=number]::-webkit-outer-spin-button,
input.qty-input[type=number]::-webkit-inner-spin-button,
input.nailedit-cart-qty-input[type=number]::-webkit-outer-spin-button,
input.nailedit-cart-qty-input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input.qty-input[type=number],
input.nailedit-cart-qty-input[type=number] {
-moz-appearance: textfield;
appearance: textfield;
}
.nailedit-back-btn {
display: inline-block;
padding: 0.75rem 1.5rem;
background: #131313;
color: #fff;
text-decoration: none;
border-radius: 8px;
transition: background 0.2s ease;
align-self: flex-start;
}
.nailedit-back-btn:hover {
background: var(--secondary);
color: #fff;
}
.nailedit-error {
padding: 2rem;
background: #fee;
border: 1px solid #f5c2c7;
border-radius: 8px;
color: var(--primary);
}
.nailedit-product-link {
text-decoration: none;
color: inherit;
display: block;
height: 100%;
}
.nailedit-product-link:hover {
color: inherit;
}
@media (max-width: 768px) {
.nailedit-product-container {
grid-template-columns: 1fr;
gap: 2rem;
}
.nailedit-product-name {
font-size: 1.75rem;
}
.nailedit-product-price-large {
font-size: 1.5rem;
}
} .nailedit-products-page {
padding: 3rem 2rem;
max-width: 1400px;
margin: 0 auto;
}
@media screen and (max-width: 1024px){
.nailedit-products-page {
padding-top: 0;
}
}
.nailedit-page-header {
margin-bottom: 2.5rem;
text-align: center;
}
.nailedit-page-header h1 {
margin: 0 0 0.5rem;
font-size: 2.5rem;
}
.nailedit-products-count {
margin: 0;
color: #666;
font-size: 1rem;
}
.nailedit-no-products {
padding: 3rem;
text-align: center;
background: #f9f9f9;
border-radius: 12px;
color: #666;
} .nailedit-pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid #eee;
}
.nailedit-page-numbers {
display: flex;
gap: 0.5rem;
}
.nailedit-page-link {
display: inline-block;
padding: 0.5rem 1rem;
background: #fff;
border: 1px solid #ddd;
border-radius: 6px;
color: #333;
text-decoration: none;
transition: all 0.2s ease;
font-weight: 500;
}
.nailedit-page-link:hover {
background: #f5f5f5;
border-color: var(--primary);
color: var(--primary);
}
.nailedit-page-link.active {
background: var(--primary);
border-color: var(--primary);
color: #fff;
pointer-events: none;
}
.nailedit-prev,
.nailedit-next {
font-weight: 600;
}
@media (max-width: 768px) {
.nailedit-page-header h1 {
font-size: 1.75rem;
}
.nailedit-pagination {
flex-wrap: wrap;
}
.nailedit-page-numbers {
order: 3;
width: 100%;
justify-content: center;
margin-top: 0.5rem;
}
} .nailedit-products-by-attribute {
margin: 2rem 0;
}
.nailedit-products-swiper {
position: relative;
padding: 0 50px;
}
.nailedit-products-swiper .swiper-slide {
height: auto;
}
.nailedit-products-swiper .nailedit-product-card {
height: 100%;
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
transition: transform 0.2s, box-shadow 0.2s;
}
.nailedit-products-swiper .nailedit-product-card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nailedit-products-swiper .nailedit-product-link {
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
height: 100%;
}
.nailedit-products-swiper .nailedit-product-thumb {
width: 100%;
padding-top: 100%;
position: relative;
background: #f5f5f5;
}
.nailedit-products-swiper .nailedit-product-thumb img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.nailedit-products-swiper .nailedit-product-body {
padding: 1rem;
flex: 1;
display: flex;
flex-direction: column;
}
.nailedit-products-swiper .nailedit-product-title {
margin: 0 0 0.5rem;
font-size: 1rem;
font-weight: 600;
line-height: 1.4;
}
.nailedit-products-swiper .nailedit-product-price {
margin: 0 0 0.5rem;
font-size: 1.25rem;
font-weight: 700;
color: var(--secondary);
}
.nailedit-products-swiper .nailedit-product-sku {
margin: 0;
font-size: 0.875rem;
color: #666;
}
.swiper-button-prev,
.swiper-button-next {
color: var(--secondary);
width: 40px;
height: 40px;
background: #fff;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.swiper-button-prev:after,
.swiper-button-next:after {
font-size: 20px;
font-weight: 700;
}
.swiper-pagination-bullet {
background: var(--secondary);
opacity: 0.3;
}
.swiper-pagination-bullet-active {
opacity: 1;
}
@media (max-width: 1023px) {
.nailedit-products-swiper {
padding: 0 40px;
}
}
@media (max-width: 639px) {
.nailedit-products-swiper {
padding: 0 30px;
}
.swiper-button-prev,
.swiper-button-next {
width: 32px;
height: 32px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
font-size: 16px;
}
}
p {
margin-bottom: 1rem;
line-height: 1.4;
font-size: 16px;
}
.nailedit-icon {
width: 18px;
height: 18px;
}
header .nailedit-icon {
fill: black !important;
}
header .nailedit-icon:hover {
fill: black !important;
}
header .nailedit-icon svg {
fill: black;
}
header .nailedit-icon:hover svg {
fill: black !important;
}
header .nailedit-icon path {
fill: black !important;
}
header .nailedit-icon:hover path {
fill: black !important;
}
.fullWidth {
margin-left: calc(-100vw / 2 + 100% / 2) !important;
margin-right: calc(-100vw / 2 + 100% / 2) !important;
max-width: 100vw !important;
width: auto !important;
}
.wp-block-button__link {
display: flex;  border-radius: 9999px; align-items: center; min-height: 48px; padding-left: 2rem; padding-right: 2rem;
margin-top: 1rem; max-width: 250px;
background: linear-gradient(
90deg,
#2e133e 0%,
#5c285c 50%,
#2e133e 100%
);
color: var(--secondary); font-size: 0.875rem; text-align: center; font-weight: 500; transition: color 0.2s ease; justify-content: center;
}
.wp-block-button__link:hover {
color: white; }
.vx-slider .owl-img {
display: block;
width: 100%;
padding-bottom: 20%;
}
@media screen and (max-width: 1024px) {
.vx-slider .owl-img {
padding-bottom: 50%;
}
.vx-slider .descWrapper .description.centercenter {
display: flex !important; 
justify-content: center;
align-items: center;
left: 0 !important;
right: 0 !important;
top: 0% !important;
-webkit-transform: translate(0%, 0%);
transform: translate(0%, 0%);
position: absolute;
display: inline-block;
max-width: 100%;
height: 100%;
}
.vx-slider .descWrapper .inner {
align-self: center;
}
.vx-slider  h2 {
font-size: 24px !important;
line-height: 1.2;
}
}
.vx-slider  h2 {
line-height: 1.2;
}
button:disabled {
cursor: not-allowed;
opacity: 0.4;
}
.menu-item a {
color: var(--secondary);
transition: color 0.2s ease;
}
.menu-item a:hover {
color: white;
}
.nailedit-mobile-nav .menu-item a {
color: #fff;
display: block;
padding: 8px 0;
transition: color 0.2s ease;
}
.nailedit-mobile-nav .menu-item a:hover {
color: var(--secondary);
} .hentry h1 {
font-family: NaileditFont, system-ui, sans-serif;
font-size: 3rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.75em;
color: var(--primary);
}
.hentry h2 {
font-family: NaileditFont, system-ui, sans-serif;
font-size: 2.5rem;
font-weight: 700;
line-height: 1.3;
margin-top: 1.5em;
margin-bottom: 0.5em;
color: var(--primary);
}
.hentry h2:first-child {
margin-top: 0;
}
.hentry h3 {
font-family: NaileditFont, system-ui, sans-serif;
font-size: 2.25rem;
font-weight: 600;
line-height: 1.4;
margin-top: 1.25em;
margin-bottom: 0.4em;
color: var(--primary);
}
.hentry h4 {
font-size: 1.1rem;
font-weight: 600;
line-height: 1.4;
margin-top: 1em;
margin-bottom: 0.3em;
}
.hentry p {
margin-bottom: 1em;
line-height: 1.7;
}
.hentry a {
color: var(--primary);
text-decoration: underline;
text-underline-offset: 2px;
transition: color 0.2s ease;
}
.hentry a:hover {
color: var(--secondary);
}
.hentry ul {
list-style: disc;
padding-left: 1.5em;
margin-bottom: 1em;
}
.hentry ol {
list-style: decimal;
padding-left: 1.5em;
margin-bottom: 1em;
}
.hentry li {
margin-bottom: 0.35em;
line-height: 1.6;
}
.hentry blockquote {
border-left: 4px solid var(--secondary);
padding: 0.75em 1.25em;
margin: 1.5em 0;
background: #f8f9fc;
border-radius: 0 8px 8px 0;
font-style: italic;
color: #475569;
}
.hentry table {
width: 100%;
border-collapse: collapse;
margin: 1em 0;
}
.hentry th,
.hentry td {
border: 1px solid #e2e8f0;
padding: 0.5em 0.75em;
text-align: left;
}
.hentry th {
background: #f1f5f9;
font-weight: 600;
}
.hentry hr {
border: none;
border-top: 1px solid #e2e8f0;
margin: 2em 0;
}
.hentry strong {
font-weight: 700;
}
.hentry em {
font-style: italic;
}
.hentry .nailedit-categories a {
text-decoration: none;
}
.hentry .nailedit-categories h3 {
font-size: 1.2rem !important;
}
#menu-user-menu  li a {
color: var(--primary);
transition: color 0.2s ease;
}
@media screen and (max-width: 1024px){
.proCont {
order: -1;
}
}
.button {
display: flex;  border-radius: 9999px; align-items: center; min-height: 48px; padding-left: 3rem; padding-right: 3rem;
margin-top: 1rem; max-width: 250px;
background: linear-gradient(
90deg,
#2e133e 0%,
#5c285c 50%,
#2e133e 100%
);
color: var(--secondary); font-size: 0.875rem; text-align: center; font-weight: 500; transition: color 0.2s ease; justify-content: center;
margin-bottom: 3rem;
}
.button:hover {
color: white
}
#nailedit-search-toggle {
top: 0.5rem;
right: 0.3rem;
}
#nailedit-review-summary p , #short-description p{
margin-bottom: 1rem;
}*, ::before, ::after {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
--tw-pan-x:  ;
--tw-pan-y:  ;
--tw-pinch-zoom:  ;
--tw-scroll-snap-strictness: proximity;
--tw-gradient-from-position:  ;
--tw-gradient-via-position:  ;
--tw-gradient-to-position:  ;
--tw-ordinal:  ;
--tw-slashed-zero:  ;
--tw-numeric-figure:  ;
--tw-numeric-spacing:  ;
--tw-numeric-fraction:  ;
--tw-ring-inset:  ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur:  ;
--tw-brightness:  ;
--tw-contrast:  ;
--tw-grayscale:  ;
--tw-hue-rotate:  ;
--tw-invert:  ;
--tw-saturate:  ;
--tw-sepia:  ;
--tw-drop-shadow:  ;
--tw-backdrop-blur:  ;
--tw-backdrop-brightness:  ;
--tw-backdrop-contrast:  ;
--tw-backdrop-grayscale:  ;
--tw-backdrop-hue-rotate:  ;
--tw-backdrop-invert:  ;
--tw-backdrop-opacity:  ;
--tw-backdrop-saturate:  ;
--tw-backdrop-sepia:  ;
--tw-contain-size:  ;
--tw-contain-layout:  ;
--tw-contain-paint:  ;
--tw-contain-style:  ;
}
::backdrop {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
--tw-pan-x:  ;
--tw-pan-y:  ;
--tw-pinch-zoom:  ;
--tw-scroll-snap-strictness: proximity;
--tw-gradient-from-position:  ;
--tw-gradient-via-position:  ;
--tw-gradient-to-position:  ;
--tw-ordinal:  ;
--tw-slashed-zero:  ;
--tw-numeric-figure:  ;
--tw-numeric-spacing:  ;
--tw-numeric-fraction:  ;
--tw-ring-inset:  ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur:  ;
--tw-brightness:  ;
--tw-contrast:  ;
--tw-grayscale:  ;
--tw-hue-rotate:  ;
--tw-invert:  ;
--tw-saturate:  ;
--tw-sepia:  ;
--tw-drop-shadow:  ;
--tw-backdrop-blur:  ;
--tw-backdrop-brightness:  ;
--tw-backdrop-contrast:  ;
--tw-backdrop-grayscale:  ;
--tw-backdrop-hue-rotate:  ;
--tw-backdrop-invert:  ;
--tw-backdrop-opacity:  ;
--tw-backdrop-saturate:  ;
--tw-backdrop-sepia:  ;
--tw-contain-size:  ;
--tw-contain-layout:  ;
--tw-contain-paint:  ;
--tw-contain-style:  ;
}  *,
::before,
::after {
box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
::before,
::after {
--tw-content: '';
} html,
:host {
line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; -o-tab-size: 4;
tab-size: 4; font-family: Montserrat, system-ui, sans-serif; font-feature-settings: normal; font-variation-settings: normal; -webkit-tap-highlight-color: transparent; } body {
margin: 0; line-height: inherit; } hr {
height: 0; color: inherit; border-top-width: 1px; } abbr:where([title]) {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
} h1,
h2,
h3,
h4,
h5,
h6 {
font-size: inherit;
font-weight: inherit;
} a {
color: inherit;
text-decoration: inherit;
} b,
strong {
font-weight: bolder;
} code,
kbd,
samp,
pre {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-feature-settings: normal; font-variation-settings: normal; font-size: 1em; } small {
font-size: 80%;
} sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
} table {
text-indent: 0; border-color: inherit; border-collapse: collapse; } button,
input,
optgroup,
select,
textarea {
font-family: inherit; font-feature-settings: inherit; font-variation-settings: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; letter-spacing: inherit; color: inherit; margin: 0; padding: 0; } button,
select {
text-transform: none;
} button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
-webkit-appearance: button; background-color: transparent; background-image: none; } :-moz-focusring {
outline: auto;
} :-moz-ui-invalid {
box-shadow: none;
} progress {
vertical-align: baseline;
} ::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
height: auto;
} [type='search'] {
-webkit-appearance: textfield; outline-offset: -2px; } ::-webkit-search-decoration {
-webkit-appearance: none;
} ::-webkit-file-upload-button {
-webkit-appearance: button; font: inherit; } summary {
display: list-item;
} blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
margin: 0;
}
fieldset {
margin: 0;
padding: 0;
}
legend {
padding: 0;
}
ol,
ul,
menu {
list-style: none;
margin: 0;
padding: 0;
} dialog {
padding: 0;
} textarea {
resize: vertical;
} input::-moz-placeholder, textarea::-moz-placeholder {
opacity: 1; color: #9ca3af; }
input::placeholder,
textarea::placeholder {
opacity: 1; color: #9ca3af; } button,
[role="button"] {
cursor: pointer;
} :disabled {
cursor: default;
} img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
display: block; vertical-align: middle; } img,
video {
max-width: 100%;
height: auto;
} [hidden]:where(:not([hidden="until-found"])) {
display: none;
}
.\!container {
width: 100% !important;
}
.container {
width: 100%;
}
@media (min-width: 640px) {
.\!container {
max-width: 640px !important;
}
.container {
max-width: 640px;
}
}
@media (min-width: 768px) {
.\!container {
max-width: 768px !important;
}
.container {
max-width: 768px;
}
}
@media (min-width: 1024px) {
.\!container {
max-width: 1024px !important;
}
.container {
max-width: 1024px;
}
}
@media (min-width: 1280px) {
.\!container {
max-width: 1280px !important;
}
.container {
max-width: 1280px;
}
}
@media (min-width: 1536px) {
.\!container {
max-width: 1536px !important;
}
.container {
max-width: 1536px;
}
}
.pointer-events-none {
pointer-events: none;
}
.pointer-events-auto {
pointer-events: auto;
}
.visible {
visibility: visible;
}
.static {
position: static;
}
.fixed {
position: fixed;
}
.absolute {
position: absolute;
}
.relative {
position: relative;
}
.sticky {
position: sticky;
}
.inset-0 {
inset: 0px;
}
.\!bottom-2 {
bottom: 0.5rem !important;
}
.-right-1\.5 {
right: -0.375rem;
}
.-top-1\.5 {
top: -0.375rem;
}
.bottom-0 {
bottom: 0px;
}
.bottom-6 {
bottom: 1.5rem;
}
.bottom-\[-20px\] {
bottom: -20px;
}
.left-0 {
left: 0px;
}
.right-0 {
right: 0px;
}
.right-3 {
right: 0.75rem;
}
.right-4 {
right: 1rem;
}
.right-6 {
right: 1.5rem;
}
.top-0 {
top: 0px;
}
.top-3 {
top: 0.75rem;
}
.top-4 {
top: 1rem;
}
.top-full {
top: 100%;
}
.left-4 {
left: 1rem;
}
.z-10 {
z-index: 10;
}
.z-30 {
z-index: 30;
}
.z-40 {
z-index: 40;
}
.z-50 {
z-index: 50;
}
.z-\[29\] {
z-index: 29;
}
.-m-2 {
margin: -0.5rem;
}
.-mx-2 {
margin-left: -0.5rem;
margin-right: -0.5rem;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.my-\[40px\] {
margin-top: 40px;
margin-bottom: 40px;
}
.my-\[50px\] {
margin-top: 50px;
margin-bottom: 50px;
}
.my-auto {
margin-top: auto;
margin-bottom: auto;
}
.mb-1 {
margin-bottom: 0.25rem;
}
.mb-2 {
margin-bottom: 0.5rem;
}
.mb-3 {
margin-bottom: 0.75rem;
}
.mb-4 {
margin-bottom: 1rem;
}
.mb-6 {
margin-bottom: 1.5rem;
}
.mb-\[23px\] {
margin-bottom: 23px;
}
.mb-\[40px\] {
margin-bottom: 40px;
}
.mb-\[50px\] {
margin-bottom: 50px;
}
.ml-1 {
margin-left: 0.25rem;
}
.mr-1 {
margin-right: 0.25rem;
}
.mr-3 {
margin-right: 0.75rem;
}
.mt-0\.5 {
margin-top: 0.125rem;
}
.mt-1 {
margin-top: 0.25rem;
}
.mt-10 {
margin-top: 2.5rem;
}
.mt-12 {
margin-top: 3rem;
}
.mt-2 {
margin-top: 0.5rem;
}
.mt-20 {
margin-top: 5rem;
}
.mt-3 {
margin-top: 0.75rem;
}
.mt-4 {
margin-top: 1rem;
}
.mt-6 {
margin-top: 1.5rem;
}
.mt-\[2px\] {
margin-top: 2px;
}
.mt-\[50px\] {
margin-top: 50px;
}
.mb-\[10px\] {
margin-bottom: 10px;
}
.mb-\[20px\] {
margin-bottom: 20px;
}
.mt-\[20px\] {
margin-top: 20px;
}
.mt-0 {
margin-top: 0px;
}
.\!mt-0 {
margin-top: 0px !important;
}
.line-clamp-2 {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.block {
display: block;
}
.inline-block {
display: inline-block;
}
.\!flex {
display: flex !important;
}
.flex {
display: flex;
}
.inline-flex {
display: inline-flex;
}
.table {
display: table;
}
.grid {
display: grid;
}
.contents {
display: contents;
}
.\!hidden {
display: none !important;
}
.hidden {
display: none;
}
.aspect-\[4\/3\] {
aspect-ratio: 4/3;
}
.aspect-\[4\/4\] {
aspect-ratio: 4/4;
}
.\!h-auto {
height: auto !important;
}
.h-10 {
height: 2.5rem;
}
.h-12 {
height: 3rem;
}
.h-16 {
height: 4rem;
}
.h-32 {
height: 8rem;
}
.h-4 {
height: 1rem;
}
.h-5 {
height: 1.25rem;
}
.h-6 {
height: 1.5rem;
}
.h-8 {
height: 2rem;
}
.h-9 {
height: 2.25rem;
}
.h-\[150px\] {
height: 150px;
}
.h-\[18px\] {
height: 18px;
}
.h-\[200px\] {
height: 200px;
}
.h-\[20px\] {
height: 20px;
}
.h-\[40px\] {
height: 40px;
}
.h-\[4px\] {
height: 4px;
}
.h-\[70px\] {
height: 70px;
}
.h-full {
height: 100%;
}
.max-h-80 {
max-height: 20rem;
}
.max-h-\[120px\] {
max-height: 120px;
}
.max-h-\[400px\] {
max-height: 400px;
}
.max-h-\[9999px\] {
max-height: 9999px;
}
.min-h-\[1\.25rem\] {
min-height: 1.25rem;
}
.min-h-\[160px\] {
min-height: 160px;
}
.min-h-\[16px\] {
min-height: 16px;
}
.min-h-\[200px\] {
min-height: 200px;
}
.min-h-\[20px\] {
min-height: 20px;
}
.min-h-\[260px\] {
min-height: 260px;
}
.min-h-\[40px\] {
min-height: 40px;
}
.min-h-\[44px\] {
min-height: 44px;
}
.min-h-\[46px\] {
min-height: 46px;
}
.min-h-\[48px\] {
min-height: 48px;
}
.min-h-\[51px\] {
min-height: 51px;
}
.min-h-\[70px\] {
min-height: 70px;
}
.w-10 {
width: 2.5rem;
}
.w-12 {
width: 3rem;
}
.w-16 {
width: 4rem;
}
.w-32 {
width: 8rem;
}
.w-4 {
width: 1rem;
}
.w-5 {
width: 1.25rem;
}
.w-6 {
width: 1.5rem;
}
.w-72 {
width: 18rem;
}
.w-8 {
width: 2rem;
}
.w-9 {
width: 2.25rem;
}
.w-\[20px\] {
width: 20px;
}
.w-\[280px\] {
width: 280px;
}
.w-\[40px\] {
width: 40px;
}
.w-\[70px\] {
width: 70px;
}
.w-full {
width: 100%;
}
.min-w-0 {
min-width: 0px;
}
.min-w-9 {
min-width: 2.25rem;
}
.min-w-\[140px\] {
min-width: 140px;
}
.min-w-\[160px\] {
min-width: 160px;
}
.min-w-\[180px\] {
min-width: 180px;
}
.min-w-\[18px\] {
min-width: 18px;
}
.min-w-\[600px\] {
min-width: 600px;
}
.min-w-\[80px\] {
min-width: 80px;
}
.min-w-full {
min-width: 100%;
}
.max-w-3xl {
max-width: 48rem;
}
.max-w-4xl {
max-width: 56rem;
}
.max-w-\[1200px\] {
max-width: 1200px;
}
.max-w-\[130px\] {
max-width: 130px;
}
.max-w-\[140px\] {
max-width: 140px;
}
.max-w-\[200px\] {
max-width: 200px;
}
.max-w-\[50px\] {
max-width: 50px;
}
.max-w-\[600px\] {
max-width: 600px;
}
.max-w-\[80px\] {
max-width: 80px;
}
.max-w-\[80vw\] {
max-width: 80vw;
}
.max-w-md {
max-width: 28rem;
}
.max-w-xs {
max-width: 20rem;
}
.flex-1 {
flex: 1 1 0%;
}
.flex-shrink-0 {
flex-shrink: 0;
}
.border-separate {
border-collapse: separate;
}
.border-spacing-y-2 {
--tw-border-spacing-y: 0.5rem;
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}
.translate-x-0 {
--tw-translate-x: 0px;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-full {
--tw-translate-x: 100%;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
cursor: pointer;
}
.select-none {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.resize-none {
resize: none;
}
.list-disc {
list-style-type: disc;
}
.appearance-none {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.columns-4 {
-moz-columns: 4;
columns: 4;
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-col {
flex-direction: column;
}
.flex-wrap {
flex-wrap: wrap;
}
.content-center {
align-content: center;
}
.items-start {
align-items: flex-start;
}
.items-end {
align-items: flex-end;
}
.items-center {
align-items: center;
}
.items-baseline {
align-items: baseline;
}
.items-stretch {
align-items: stretch;
}
.justify-end {
justify-content: flex-end;
}
.justify-center {
justify-content: center;
}
.justify-between {
justify-content: space-between;
}
.gap-1 {
gap: 0.25rem;
}
.gap-2 {
gap: 0.5rem;
}
.gap-3 {
gap: 0.75rem;
}
.gap-4 {
gap: 1rem;
}
.gap-6 {
gap: 1.5rem;
}
.gap-8 {
gap: 2rem;
}
.gap-\[10px\] {
gap: 10px;
}
.gap-\[24px\] {
gap: 24px;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
--tw-divide-y-reverse: 0;
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-slate-100 > :not([hidden]) ~ :not([hidden]) {
--tw-divide-opacity: 1;
border-color: rgb(241 245 249 / var(--tw-divide-opacity, 1));
}
.self-start {
align-self: flex-start;
}
.self-end {
align-self: flex-end;
}
.overflow-hidden {
overflow: hidden;
}
.\!overflow-visible {
overflow: visible !important;
}
.overflow-x-auto {
overflow-x: auto;
}
.overflow-y-auto {
overflow-y: auto;
}
.overflow-x-hidden {
overflow-x: hidden;
}
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.whitespace-nowrap {
white-space: nowrap;
}
.rounded {
border-radius: 0.25rem;
}
.rounded-2xl {
border-radius: 1rem;
}
.rounded-3xl {
border-radius: 1.5rem;
}
.rounded-\[4px\] {
border-radius: 4px;
}
.rounded-full {
border-radius: 9999px;
}
.rounded-lg {
border-radius: 0.5rem;
}
.rounded-md {
border-radius: 0.375rem;
}
.rounded-xl {
border-radius: 0.75rem;
}
.rounded-l-lg {
border-top-left-radius: 0.5rem;
border-bottom-left-radius: 0.5rem;
}
.rounded-r-lg {
border-top-right-radius: 0.5rem;
border-bottom-right-radius: 0.5rem;
}
.rounded-t-24 {
border-top-left-radius: 24px;
border-top-right-radius: 24px;
}
.border {
border-width: 1px;
}
.border-0 {
border-width: 0px;
}
.border-2 {
border-width: 2px;
}
.border-\[2px\] {
border-width: 2px;
}
.border-b {
border-bottom-width: 1px;
}
.border-t {
border-top-width: 1px;
}
.border-black {
--tw-border-opacity: 1;
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
--tw-border-opacity: 1;
border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-500 {
--tw-border-opacity: 1;
border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-green-200 {
--tw-border-opacity: 1;
border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.border-primary {
--tw-border-opacity: 1;
border-color: rgb(30 30 30 / var(--tw-border-opacity, 1));
}
.border-red-200 {
--tw-border-opacity: 1;
border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.border-red-500 {
--tw-border-opacity: 1;
border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-secondary {
--tw-border-opacity: 1;
border-color: rgb(251 119 1 / var(--tw-border-opacity, 1));
}
.border-slate-100 {
--tw-border-opacity: 1;
border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}
.border-slate-200 {
--tw-border-opacity: 1;
border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-slate-300 {
--tw-border-opacity: 1;
border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.border-third {
--tw-border-opacity: 1;
border-color: rgb(30 30 30 / var(--tw-border-opacity, 1));
}
.border-white\/20 {
border-color: rgb(255 255 255 / 0.2);
}
.bg-\[\#1e1e1e\] {
--tw-bg-opacity: 1;
background-color: rgb(30 30 30 / var(--tw-bg-opacity, 1));
}
.bg-\[\#e3f5e5\] {
--tw-bg-opacity: 1;
background-color: rgb(227 245 229 / var(--tw-bg-opacity, 1));
}
.bg-black {
--tw-bg-opacity: 1;
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/50 {
background-color: rgb(0 0 0 / 0.5);
}
.bg-green-50 {
--tw-bg-opacity: 1;
background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500 {
--tw-bg-opacity: 1;
background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-orange-500 {
--tw-bg-opacity: 1;
background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.bg-primary {
--tw-bg-opacity: 1;
background-color: rgb(30 30 30 / var(--tw-bg-opacity, 1));
}
.bg-primary\/5 {
background-color: rgb(30 30 30 / 0.05);
}
.bg-red-100 {
--tw-bg-opacity: 1;
background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-50 {
--tw-bg-opacity: 1;
background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-secondary {
--tw-bg-opacity: 1;
background-color: rgb(251 119 1 / var(--tw-bg-opacity, 1));
}
.bg-slate-100 {
--tw-bg-opacity: 1;
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.bg-slate-50 {
--tw-bg-opacity: 1;
background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-transparent {
background-color: transparent;
}
.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/70 {
background-color: rgb(255 255 255 / 0.7);
}
.bg-white\/80 {
background-color: rgb(255 255 255 / 0.8);
}
.bg-white\/90 {
background-color: rgb(255 255 255 / 0.9);
}
.bg-\[\#1a1a1a\] {
--tw-bg-opacity: 1;
background-color: rgb(26 26 26 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-b {
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-\[\#56265d\] {
--tw-gradient-from: #56265d var(--tw-gradient-from-position);
--tw-gradient-to: rgb(86 38 93 / 0) var(--tw-gradient-to-position);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#1c0d25\] {
--tw-gradient-to: #1c0d25 var(--tw-gradient-to-position);
}
.object-cover {
-o-object-fit: cover;
object-fit: cover;
}
.object-top {
-o-object-position: top;
object-position: top;
}
.p-2 {
padding: 0.5rem;
}
.p-3 {
padding: 0.75rem;
}
.p-4 {
padding: 1rem;
}
.p-6 {
padding: 1.5rem;
}
.p-\[10px\] {
padding: 10px;
}
.p-\[15px\] {
padding: 15px;
}
.p-\[20px\] {
padding: 20px;
}
.\!px-0 {
padding-left: 0px !important;
padding-right: 0px !important;
}
.px-1 {
padding-left: 0.25rem;
padding-right: 0.25rem;
}
.px-10 {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
.px-2\.5 {
padding-left: 0.625rem;
padding-right: 0.625rem;
}
.px-3 {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.px-5 {
padding-left: 1.25rem;
padding-right: 1.25rem;
}
.px-6 {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
.px-\[20px\] {
padding-left: 20px;
padding-right: 20px;
}
.px-\[30px\] {
padding-left: 30px;
padding-right: 30px;
}
.py-0\.5 {
padding-top: 0.125rem;
padding-bottom: 0.125rem;
}
.py-1 {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
.py-1\.5 {
padding-top: 0.375rem;
padding-bottom: 0.375rem;
}
.py-10 {
padding-top: 2.5rem;
padding-bottom: 2.5rem;
}
.py-2 {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.py-2\.5 {
padding-top: 0.625rem;
padding-bottom: 0.625rem;
}
.py-3 {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
}
.py-4 {
padding-top: 1rem;
padding-bottom: 1rem;
}
.py-8 {
padding-top: 2rem;
padding-bottom: 2rem;
}
.pb-0 {
padding-bottom: 0px;
}
.pb-6 {
padding-bottom: 1.5rem;
}
.pb-8 {
padding-bottom: 2rem;
}
.pb-\[15px\] {
padding-bottom: 15px;
}
.pb-\[30px\] {
padding-bottom: 30px;
}
.pl-4 {
padding-left: 1rem;
}
.pt-1 {
padding-top: 0.25rem;
}
.pt-10 {
padding-top: 2.5rem;
}
.pt-2 {
padding-top: 0.5rem;
}
.pt-20 {
padding-top: 5rem;
}
.pt-4 {
padding-top: 1rem;
}
.pt-6 {
padding-top: 1.5rem;
}
.\!pt-0 {
padding-top: 0px !important;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.align-top {
vertical-align: top;
}
.align-middle {
vertical-align: middle;
}
.font-nailedit {
font-family: Playfair Display, serif;
}
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.text-\[10px\] {
font-size: 10px;
}
.text-\[11px\] {
font-size: 11px;
}
.text-\[12px\] {
font-size: 12px;
}
.text-\[13px\] {
font-size: 13px;
}
.text-\[14px\] {
font-size: 14px;
}
.text-\[15px\] {
font-size: 15px;
}
.text-\[16px\] {
font-size: 16px;
}
.text-\[17px\] {
font-size: 17px;
}
.text-\[18px\] {
font-size: 18px;
}
.text-\[20px\] {
font-size: 20px;
}
.text-\[22px\] {
font-size: 22px;
}
.text-\[25px\] {
font-size: 25px;
}
.text-\[26px\] {
font-size: 26px;
}
.text-\[28px\] {
font-size: 28px;
}
.text-\[35px\] {
font-size: 35px;
}
.text-base {
font-size: 1rem;
line-height: 1.5rem;
}
.text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
.text-xs {
font-size: 0.75rem;
line-height: 1rem;
}
.font-\[500\] {
font-weight: 500;
}
.font-bold {
font-weight: 700;
}
.font-medium {
font-weight: 500;
}
.font-semibold {
font-weight: 600;
}
.uppercase {
text-transform: uppercase;
}
.italic {
font-style: italic;
}
.leading-none {
line-height: 1;
}
.leading-snug {
line-height: 1.375;
}
.leading-tight {
line-height: 1.25;
}
.tracking-\[0\.08em\] {
letter-spacing: 0.08em;
}
.tracking-\[0\.12em\] {
letter-spacing: 0.12em;
}
.tracking-\[0\.14em\] {
letter-spacing: 0.14em;
}
.tracking-\[0\.16em\] {
letter-spacing: 0.16em;
}
.tracking-\[0\.2em\] {
letter-spacing: 0.2em;
}
.tracking-wide {
letter-spacing: 0.025em;
}
.text-\[\#2f8f3a\] {
--tw-text-opacity: 1;
color: rgb(47 143 58 / var(--tw-text-opacity, 1));
}
.text-\[\#f5b300\] {
--tw-text-opacity: 1;
color: rgb(245 179 0 / var(--tw-text-opacity, 1));
}
.text-emerald-600 {
--tw-text-opacity: 1;
color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}
.text-green-600 {
--tw-text-opacity: 1;
color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-800 {
--tw-text-opacity: 1;
color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-primary {
--tw-text-opacity: 1;
color: rgb(30 30 30 / var(--tw-text-opacity, 1));
}
.text-primary\/80 {
color: rgb(30 30 30 / 0.8);
}
.text-red-500 {
--tw-text-opacity: 1;
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600 {
--tw-text-opacity: 1;
color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700 {
--tw-text-opacity: 1;
color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-red-800 {
--tw-text-opacity: 1;
color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-secondary {
--tw-text-opacity: 1;
color: rgb(251 119 1 / var(--tw-text-opacity, 1));
}
.text-slate-400 {
--tw-text-opacity: 1;
color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
--tw-text-opacity: 1;
color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
--tw-text-opacity: 1;
color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-700 {
--tw-text-opacity: 1;
color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-slate-800 {
--tw-text-opacity: 1;
color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.text-slate-900 {
--tw-text-opacity: 1;
color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
text-decoration-line: underline;
}
.line-through {
text-decoration-line: line-through;
}
.underline-offset-2 {
text-underline-offset: 2px;
}
.placeholder-primary\/60::-moz-placeholder {
color: rgb(30 30 30 / 0.6);
}
.placeholder-primary\/60::placeholder {
color: rgb(30 30 30 / 0.6);
}
.placeholder-slate-400::-moz-placeholder {
--tw-placeholder-opacity: 1;
color: rgb(148 163 184 / var(--tw-placeholder-opacity, 1));
}
.placeholder-slate-400::placeholder {
--tw-placeholder-opacity: 1;
color: rgb(148 163 184 / var(--tw-placeholder-opacity, 1));
}
.opacity-0 {
opacity: 0;
}
.opacity-100 {
opacity: 1;
}
.opacity-50 {
opacity: 0.5;
}
.shadow-2xl {
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
outline: 2px solid transparent;
outline-offset: 2px;
}
.ring {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-primary {
--tw-ring-opacity: 1;
--tw-ring-color: rgb(30 30 30 / var(--tw-ring-opacity, 1));
}
.ring-offset-2 {
--tw-ring-offset-width: 2px;
}
.drop-shadow {
--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur {
--tw-backdrop-blur: blur(8px);
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
--tw-backdrop-blur: blur(4px);
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-colors {
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-opacity {
transition-property: opacity;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-shadow {
transition-property: box-shadow;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.transition-transform {
transition-property: transform;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.duration-150 {
transition-duration: 150ms;
}
.duration-300 {
transition-duration: 300ms;
}
.ease-in-out {
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.placeholder\:text-slate-400::-moz-placeholder {
--tw-text-opacity: 1;
color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.placeholder\:text-slate-400::placeholder {
--tw-text-opacity: 1;
color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.before\:mx-1::before {
content: var(--tw-content);
margin-left: 0.25rem;
margin-right: 0.25rem;
}
.before\:text-slate-400::before {
content: var(--tw-content);
--tw-text-opacity: 1;
color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.before\:content-\[\'\/\'\]::before {
--tw-content: '/';
content: var(--tw-content);
}
.before\:content-\[\\\'\/\\\'\]::before {
--tw-content: \'/\';
content: var(--tw-content);
}
.last\:border-b-0:last-child {
border-bottom-width: 0px;
}
.hover\:border-primary:hover {
--tw-border-opacity: 1;
border-color: rgb(30 30 30 / var(--tw-border-opacity, 1));
}
.hover\:border-secondary:hover {
--tw-border-opacity: 1;
border-color: rgb(251 119 1 / var(--tw-border-opacity, 1));
}
.hover\:bg-fourth:hover {
--tw-bg-opacity: 1;
background-color: rgb(251 119 1 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary:hover {
--tw-bg-opacity: 1;
background-color: rgb(30 30 30 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary\/90:hover {
background-color: rgb(30 30 30 / 0.9);
}
.hover\:bg-red-50:hover {
--tw-bg-opacity: 1;
background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-100:hover {
--tw-bg-opacity: 1;
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-200:hover {
--tw-bg-opacity: 1;
background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-50:hover {
--tw-bg-opacity: 1;
background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.hover\:text-black:hover {
--tw-text-opacity: 1;
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.hover\:text-primary:hover {
--tw-text-opacity: 1;
color: rgb(30 30 30 / var(--tw-text-opacity, 1));
}
.hover\:text-secondary:hover {
--tw-text-opacity: 1;
color: rgb(251 119 1 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
text-decoration-line: underline;
}
.hover\:shadow-2xl:hover {
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:border-primary:focus {
--tw-border-opacity: 1;
border-color: rgb(30 30 30 / var(--tw-border-opacity, 1));
}
.focus\:outline-none:focus {
outline: 2px solid transparent;
outline-offset: 2px;
}
.focus\:ring-2:focus {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-primary\/20:focus {
--tw-ring-color: rgb(30 30 30 / 0.2);
}
.focus\:ring-secondary:focus {
--tw-ring-opacity: 1;
--tw-ring-color: rgb(251 119 1 / var(--tw-ring-opacity, 1));
}
.group:hover .group-hover\:border-primary {
--tw-border-opacity: 1;
border-color: rgb(30 30 30 / var(--tw-border-opacity, 1));
}
.group:hover .group-hover\:text-primary {
--tw-text-opacity: 1;
color: rgb(30 30 30 / var(--tw-text-opacity, 1));
}
@media (min-width: 640px) {
.sm\:inline-block {
display: inline-block;
}
.sm\:max-w-\[130px\] {
max-width: 130px;
}
.sm\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 768px) {
.md\:sticky {
position: sticky;
}
.md\:top-24 {
top: 6rem;
}
.md\:top-auto {
top: auto;
}
.md\:col-span-2 {
grid-column: span 2 / span 2;
}
.md\:mx-0 {
margin-left: 0px;
margin-right: 0px;
}
.md\:mb-0 {
margin-bottom: 0px;
}
.md\:mt-2 {
margin-top: 0.5rem;
}
.md\:block {
display: block;
}
.md\:flex {
display: flex;
}
.md\:hidden {
display: none;
}
.md\:w-1\/4 {
width: 25%;
}
.md\:w-72 {
width: 18rem;
}
.md\:w-auto {
width: auto;
}
.md\:flex-1 {
flex: 1 1 0%;
}
.md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.md\:grid-cols-\[minmax\(0\2c 2fr\)_minmax\(0\2c 1\.4fr\)\] {
grid-template-columns: minmax(0,2fr) minmax(0,1.4fr);
}
.md\:grid-cols-\[minmax\(0\2c 2fr\)_minmax\(0\2c 1fr\)\] {
grid-template-columns: minmax(0,2fr) minmax(0,1fr);
}
.md\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.md\:flex-row {
flex-direction: row;
}
.md\:items-start {
align-items: flex-start;
}
.md\:items-end {
align-items: flex-end;
}
.md\:items-center {
align-items: center;
}
.md\:justify-between {
justify-content: space-between;
}
.md\:gap-4 {
gap: 1rem;
}
.md\:gap-6 {
gap: 1.5rem;
}
.md\:rounded-2xl {
border-radius: 1rem;
}
.md\:p-6 {
padding: 1.5rem;
}
.md\:p-8 {
padding: 2rem;
}
.md\:px-10 {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
.md\:px-12 {
padding-left: 3rem;
padding-right: 3rem;
}
.md\:px-3 {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
.md\:py-10 {
padding-top: 2.5rem;
padding-bottom: 2.5rem;
}
.md\:py-4 {
padding-top: 1rem;
padding-bottom: 1rem;
}
.md\:text-\[14px\] {
font-size: 14px;
}
.md\:text-\[16px\] {
font-size: 16px;
}
.md\:text-\[20px\] {
font-size: 20px;
}
.md\:text-\[26px\] {
font-size: 26px;
}
.md\:text-\[30px\] {
font-size: 30px;
}
.md\:text-\[32px\] {
font-size: 32px;
}
.md\:text-\[35px\] {
font-size: 35px;
}
.md\:text-base {
font-size: 1rem;
line-height: 1.5rem;
}
.md\:text-\[40tepx\] {
color: 40tepx;
}
}
@media (min-width: 1024px) {
.lg\:mb-\[40px\] {
margin-bottom: 40px;
}
.lg\:\!flex {
display: flex !important;
}
.lg\:\!hidden {
display: none !important;
}
.lg\:max-h-\[500px\] {
max-height: 500px;
}
.lg\:min-w-\[130px\] {
min-width: 130px;
}
.lg\:max-w-\[130px\] {
max-width: 130px;
}
.lg\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lg\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lg\:grid-cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.lg\:gap-20 {
gap: 5rem;
}
.lg\:gap-6 {
gap: 1.5rem;
}
.lg\:\!rounded-b-none {
border-bottom-right-radius: 0px !important;
border-bottom-left-radius: 0px !important;
}
.lg\:border-\[2px\] {
border-width: 2px;
}
.lg\:border-r {
border-right-width: 1px;
}
.lg\:border-gray-200 {
--tw-border-opacity: 1;
border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.lg\:border-slate-200 {
--tw-border-opacity: 1;
border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.lg\:bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.lg\:px-0 {
padding-left: 0px;
padding-right: 0px;
}
.lg\:py-10 {
padding-top: 2.5rem;
padding-bottom: 2.5rem;
}
.lg\:pb-0 {
padding-bottom: 0px;
}
.lg\:pb-\[15px\] {
padding-bottom: 15px;
}
.lg\:pl-10 {
padding-left: 2.5rem;
}
.lg\:pr-10 {
padding-right: 2.5rem;
}
.lg\:text-primary {
--tw-text-opacity: 1;
color: rgb(30 30 30 / var(--tw-text-opacity, 1));
}
.lg\:shadow-xl {
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.lg\:transition-shadow {
transition-property: box-shadow;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
.lg\:hover\:shadow-2xl:hover {
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
}
.nailedit-categories-swiper .swiper-slide, .nailedit-products-swiper .swiper-slide {
opacity: 0.3;
}
.nailedit-categories-swiper .swiper-slide.now-visible {
opacity: 1;
}
.nailedit-products-swiper .swiper-slide.now-visible {
opacity: 1;
}
.site-main .swiper-button-prev,
.site-main .swiper-button-next {
color: var(--secondary);
width: 40px;
height: 40px;
background: #fff;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.site-main .swiper-button-prev:after,
.site-main .swiper-button-next:after {
font-size: 20px;
font-weight: 700;
}
.site-main .swiper-pagination-bullet {
background: var(--secondary);
opacity: 0.3;
}
.site-main .swiper-pagination-bullet-active {
opacity: 1;
}
@media (max-width: 1023px) {
.site-main .nailedit-products-swiper {
padding: 0 40px;
}
}
@media (max-width: 639px) {
.site-main .nailedit-products-swiper {
padding: 0 30px;
}
.site-main .swiper-button-prev,
.site-main .swiper-button-next {
width: 32px;
height: 32px;
}
.site-main .swiper-button-prev:after,
.site-main .swiper-button-next:after {
font-size: 16px;
}
} .nailedit-dual-range {
pointer-events: all;
-webkit-appearance: none;
appearance: none;
background: transparent;
outline: none;
}
.nailedit-dual-range::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 22px;
height: 22px;
border-radius: 50%;
background: #240D51;
cursor: pointer;
pointer-events: all;
position: relative;
z-index: 100;
border: 3px solid #fff;
box-shadow: 0 2px 6px rgba(103, 23, 104, 0.3);
margin-top: -9px;
}
.nailedit-dual-range::-moz-range-thumb {
width: 22px;
height: 22px;
border-radius: 50%;
background: #240D51;
cursor: pointer;
pointer-events: all;
border: 3px solid #fff;
box-shadow: 0 2px 6px rgba(103, 23, 104, 0.3);
z-index: 100;
margin-top: -9px;
} #nailedit-range-min::-webkit-slider-runnable-track {
width: 100%;
height: 6px;
background: #f1ca71;
border-radius: 3px;
}
#nailedit-range-min::-moz-range-track {
width: 100%;
height: 6px;
background: #f1ca71;
border-radius: 3px;
} #nailedit-range-max::-webkit-slider-runnable-track {
width: 100%;
height: 6px;
background: transparent;
border-radius: 3px;
}
#nailedit-range-max::-moz-range-track {
width: 100%;
height: 6px;
background: transparent;
border-radius: 3px;
}