:root {
    --white: #fff;
    --primary_color: #007bff;
    --secondary_color: #666;
    --primary_bg: #007bff;
    --secondary_bg: #ededed;
    --primary_cr: #333;
    --text_color: #333;
    --link_color: #333;
    --link_hover: var(--primary_bg);
    --border-color: #ced4da;

    /* Button */
    --btn-primary-color: #007bff;
    --btn-primary-dark: #0056b3;

    --btn-secondary-color: #666;
    --btn-secondary-dark: #4d4d4d;

    --btn-red-color: #dc3545;
    --btn-red-dark: #a71d2a;

    --btn-green-color: #28a745;
    --btn-green-dark: #1e7e34;

    --btn-text-color: #fff;
    --btn-border-radius: 6px;
    --btn-padding: 10px 20px;
    --btn-font-size: 16px;
    --btn-transition: all 0.3s ease-in-out;
}
body {
    background-color: var(--white);
    padding-bottom: 0;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: var(--text_color);
    line-height: 1.5;
    overflow-x: hidden;
}
body a{
    color: var(--link_color);
}
body a:hover{
    color: var(--link_hover);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hr {
    margin: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Navbar */
.wrapper {
    position: fixed;
    width: 100%;
    box-shadow: 2px 2px 5px #b6b6b6, -2px -2px 2px #ffffff;
    z-index: 1000;
    background: #fff;
}
.wrapper nav {
    background-color: var(--white);
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 70px;
    align-items: center;
    justify-content: space-between;
}
nav .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

nav .nav-content .links {
    margin-left: 80px;
    display: flex;
    gap: 10px;
}

.nav-content .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-content .logo img {
    width: 30px;
}

.nav-content .logo a {
    color: var(--primary_color);
    font-size: 25px;
    font-weight: 600;
	font-family: sans-serif;
    display: flex;
    align-items: center;
	cursor: pointer;
}

.nav-content .links li {
    list-style: none;
    line-height: 70px;
}

.nav-content .links li a,
.nav-content .links li label {
    color: var(--link_color);
    font-size: 16px;
    padding: 7px 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: normal;
}

.nav-content .links li label {
    display: none;
}

.nav-content .links li a:hover,
.nav-content .links li label:hover {
    background: var(--primary_color);
    color: #fff;
}

.nav-content .links li a svg {
    stroke: var(--link_color);
    fill: var(--link_color);
}
.nav-content .links li a svg circle {
    fill: var(--link_color);
}
.nav-content .links li a:hover svg {
    stroke: #fff;
    fill: #fff;
}
.nav-content .links li a:hover svg circle {
    fill: #fff;
}

/* Feedback button styling */
.nav-content .links li a svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
    flex-shrink: 0;
}

.wrapper .menu-icon {
    color: #000;
    font-size: 22px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
}
.wrapper .menu-icon {
    display: none;
}
.wrapper input[type="checkbox"] {
    display: none;
}

/* Dropdown Menu code start */
.nav-content .links ul {
    position: absolute;
    background: #fff;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    color: #fff;
}
@media (min-width: 901px) {
    .nav-content .links ul {
        box-shadow: 0 3px 5px #b6b6b6, -2px -2px 2px #ffffff;
    }
    .nav-content .links li a {
        background: #f7f7f7;
    }
}
.nav-content .links li:hover > ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}
.nav-content .links ul li a {
    color: var(--link_color);
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0 !important;
}
.nav-content .links ul ul {
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
}
.nav-content .links ul li {
    position: relative;
}
.nav-content .links ul li:hover ul {
    top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
    .wrapper nav {
        max-width: 100%;
        padding: 0 20px;
    }
    nav .nav-content .links {
        margin-left: 30px;
    }
    .nav-content .links li a {
        color: #000;
        padding: 8px 13px;
        font-size: 16px;
    }

    .wrapper .search-box input {
        padding: 0 100px 0 15px;
    }
}

.links > li > label > i {
    float: right;
}

@media screen and (max-width: 900px) {
    .wrapper .menu-icon {
        display: block;
    }
    .nav-content .logo a {
        font-size: 25px;
    }
    .wrapper #show-menu:checked ~ .menu-icon i::before {
        content: "\f00d";
    }
    nav .nav-content .links {
        display: block;
        position: fixed;
        background: #ffffff;
        height: 100%;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
        box-shadow: 0 0 2px #b6b6b6, -2px -2px 2px #ffffff;
    }
    nav #show-menu:checked ~ .nav-content .links {
        left: 0;
    }
    .nav-content .links li {
        margin: 0 7px;
        border-bottom: 1px solid #f1f1f1;
    }
    .nav-content .links ul li:first-child {
        border-top: 1px solid #f1f1f1; /* Change color and size as needed */
    }

    .nav-content .links li a,
    .nav-content .links li label {
        line-height: 25px;
        font-size: 16px;
        display: flex;
        padding: 8px 18px;
        cursor: pointer;
        color: var(--link_color);
        align-items: center;
        justify-content: flex-start;
    }
    .nav-content .links ul li:last-child {
        border-bottom: 0 solid rgba(218, 218, 218, 0); /* Change color and size as needed */
    }
    .nav-content .links li a.desktop-link {
        display: none;
    }
    /* dropdown responsive code start */
    .nav-content .links ul,
    .nav-content .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0;
        overflow: hidden;
    }
    .nav-content .links #show-products:checked ~ ul,
    .nav-content .links #show-services:checked ~ ul,
    .nav-content .links #show-items:checked ~ ul {
        max-height: 100vh;
    }
    .nav-content .links ul li {
        margin: 0 20px;
    }
    .nav-content .links ul li a {
        font-size: 16px;
        line-height: 25px;
        border-radius: 5px !important;
    }

}

@media screen and (max-width: 400px) {
    .wrapper nav {
        padding: 0 10px;
    }
    .nav-content .logo img {
        width: 25px;
    }
    .nav-content .logo a {
        font-size: 23px;
    }

    .wrapper .search-box input {
        padding-right: 30px;
    }
}


.nav-content .links label::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free",serif;
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
}

.nav-content .links input:checked ~ label::after {
    content: "\f106";
    transform: rotate(180deg);
}
.nav-content .links li a.active {
    background: var(--primary_color) !important;
    color: #fff;
}

/* Navbar End */

.main-content {
    min-height: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 70px 0 0;
}
.main-content, body, html {
    min-height: 100%;
}

.header-section {
    text-align: center;
    padding: 25px 0;
}


.header-section h1 {
    font-size:1.8rem;
    font-weight: 600;
    color: #222; /* Dark color for title */
    margin-bottom: 10px;
}

.header-section p {
    font-size: 1rem;
    color: #444;
    margin: 0 auto;
    line-height: 1.6;
}

.editor_box {
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: 800px;
}

/* ratings */


.rating-box {
    display:flex;
    flex-direction: row-reverse;
    justify-content:space-around;
    padding:0 .2em;
    text-align:center;
}

.star-rating input {
    display:none;
}

.star-rating label {
    color:#ccc;
    cursor:pointer;
    font-size:2em;
}

.star-rating :checked ~ label {
    color:#f90;
}

.rating-box input:not(:disabled) + label:hover,
.rating-box input:not(:disabled) + label:hover ~ label {
    color: #f90;
}
.rating-box:has(input:disabled) label {
    pointer-events: none;
}


.star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 6px;
}
@media (max-width: 899px) {
    .star-rating {
        flex-direction: column;
    }
}

.star-rating .rating-text {
    font-size: 16px;
    font-weight: 600;
}
.star-rating .rating-count {
    font-size: 16px;
}
/* Start rating End */

.row {
    margin-left: 15px;
    margin-right: 15px;
    clear: both;
}

.left {
    text-align: left;
}
.center {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: auto;
}


/* Buttons */

/* 🔵 Primary Button (Solid) */
.btn.primary {
    background-color: var(--btn-primary-color); /* Primary Blue */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn.primary:hover {
    background-color: #0056b3; /* Darker Blue */
}

/* ⚪ Secondary Button (Outlined) */
.btn.secondary {
    background-color: transparent;
    color: var(--btn-primary-color);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn.secondary:hover {
    background-color: var(--btn-primary-color);
    color: white;
}

/* 🔲 No BG Button (Text only) */
.btn.nobg {
    background: transparent;
    color: var(--btn-primary-color);
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn.nobg:hover {
    color: var(--btn-primary-color);
}



/* Message */
.msg {
    width: max-content;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid;
}

/* Success Message */
.msg.success {
    background-color: #d4edda;
    border-color: #155724;
    color: #155724;
}

.msg.success.icon::before {
    content: "\f00c"; /* Check icon */
}

/* Error Message */
.msg.error {
    background-color: #f8d7da;
    border-color: #721c24;
    color: #721c24;
}

.msg.error.icon::before {
    content: "\f00d"; /* Times icon */
}

/* Default Icon Styling */
.msg.icon::before {
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    border-radius: 50%;
    font-size: 16px;
}

.msg.success.icon::before {
    background-color: #28a745;
    color: white;
}

.msg.error.icon::before {
    background-color: #dc3545;
    color: white;
}

/* Alignment Styles */
.msg.center {
    justify-content: center;
    text-align: center;
}

.msg.left {
    justify-content: flex-start;
    text-align: left;
}

/* === Toast === */
.toast-container {
    position: fixed;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    width: max-content;
}

.toast-container.top {
    top: 10px;
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    align-items: center;
}

.toast-container.left {
    top: 10px;
    left: 10px;
    align-items: flex-start;
}

.toast-container.right {
    top: 10px;
    right: 10px;
    align-items: flex-end;
}

.toast-container.middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}


/* Toast Message */
.msg.toast {
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.5s ease forwards;
    box-shadow: 0 1px 4px 0 rgb(34 36 38 / 35%), 0 2px 10px 0 rgb(22 25 27 / 12%);
    overflow: hidden;
    width: max-content;
    height: auto;
    max-width: 90vw;
    overflow-wrap: break-word;
    text-align: left;
}

/* Toast Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Animation (Shake Effect) */
@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
}

.msg.toast.icon::before {
    animation: shake 0.5s ease-in-out infinite;
}


.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ddd;
    overflow: hidden;
    right: 0;
}

.progress-bar-fill {
    height: 100%;
    background-color: #28a745;
    width: 100%;
    transition: width 0s linear;
    right: 0;
}

.msg.error .progress-bar-fill {
    background-color: #dc3545;
}

/* Messages End */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary_color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg,
.icon-circle  i {
    width: 30px;
    height: 30px;
    fill: white;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
}
.h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
}

p {
    color: var(--text_color);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {

    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Accordion */

.accordion > .title {
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    color: var(--link_color);
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    line-height: 1.5em;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    text-align: left;
    width: 100%;
    padding: 16px 22px 16px 0;
    border-bottom: 1px solid var(--border-color);
}

/*button not active*/
.accordion > .title:after {
    content: '\002B';
    color: var(--text_color);
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 1.2rem;
}

/* minus button */
.accordion > .title.active:after {
    content: "\2212";


}

.accordion > .description {
    text-align: left;
    padding: 0;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    width: 100%;
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 400;
    font-style: normal;
    color: rgba(0, 0, 0, .88);
}



.accordion > .description[style*="max-height"] > * {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
}


.accordion > .description ol li{
    margin-left: 25px;
}

.accordion > .description p {
    font-size: 14px;
}

/* Feedback popup */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 300px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.popup > .title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
}
.popup textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}
.popup .form > button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
textarea:focus {
    outline: none !important;
    border-color: var(--primary_color);
    box-shadow: 0 0 1px rgba(0, 123, 255, 0.5);
}


.send-btn:disabled {
    background: var(--secondary_color);
    cursor: not-allowed;
}

/* Footer */
.footer {
    text-align: left;
    padding: 20px 40px;
    margin: 0 auto;
}

.footer-logo {
    color: #007bff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--link_color);
    font-size: 14px;
}

.footer-divider {
    border: none;
    border-top: 1px solid #ced4da;
    margin: 20px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: var(--secondary_color);
}



/* Form */
.flex-container {
    display: flex;
    max-width: 900px;
    margin: 30px auto auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.box-info {
    flex: 1;
    padding-right: 30px;
}

.box-info h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.box-info p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

.box-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.box-info a:hover {
    text-decoration: underline;
}

.box-form {
    flex: 1;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}

.form-group textarea {
    min-height: 100px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.captcha-box img {
    border-radius: 6px;
    border: 1px solid #ccc;
    height: 40px;
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
    }

    .box-info {
        padding-right: 0;
        margin-bottom: 20px;
    }
}
/* shadow box */

.box-container {
    display: block;
    max-width: 1000px;
    margin: 0 auto auto;
    padding: 0 24px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.box-container > .header > h1 {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    color: var(--text_color);
    font-size: 1.6rem;
    font-weight: 500;
    text-align: left;
    padding: 0 0 10px 0;
}
.box-container > .header > p {
    margin-bottom: 20px;
    color: var(--text_color);
    font-size: 1em;
    font-weight: normal;
    text-align: left;
    padding: 0 0 10px 0;
}

.box-container.no-shadow {
    box-shadow: 0 0 0 transparent;
    padding: 15px;
}



/* ? Select dropdown styling for all devices */
select {
    appearance: none; /* Remove default styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white; /* Set consistent background */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* ? Fix for iOS (Safari) */
select::-ms-expand {
    display: none; /* Hide default dropdown arrow in IE/Edge */
}

/* ? Mobile-specific fix */
@media (max-width: 768px) {
    select {
        background-color: white !important; /* Force white background */
    }
}

/* buttons */

.btn {
    display: inline;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    transition: var(--btn-transition);
    border-radius: var(--btn-border-radius);
    padding: var(--btn-padding);
    font-size: var(--btn-font-size);
}
.btn.p0 {
    padding: 0;
}
/* 🔵 Primary Button */
.btn.primary {
    background: var(--btn-primary-color);
    color: var(--btn-text-color);
}

.btn.primary:hover {
    background: var(--btn-primary-dark);
}

/* ⚫ Secondary Button */
.btn.secondary {
    background: var(--btn-secondary-color);
    color: var(--btn-text-color);
}

.btn.secondary:hover {
    background: var(--btn-secondary-dark);
}

/* 🔴 Red Button */
.btn.red {
    background: var(--btn-red-color);
    color: var(--btn-text-color);
}

.btn.red:hover {
    background: var(--btn-red-dark);
}

/* 🟢 Green Button */
.btn.green {
    background: var(--btn-green-color);
    color: var(--btn-text-color);
}

.btn.green:hover {
    background: var(--btn-green-dark);
}

/* 🏆 Button Sizes */
.btn.big {
    font-size: 20px;
    padding: 14px 28px;
}

.btn.small {
    font-size: 14px;
    padding: 8px 16px;
}

.btn.mini {
    font-size: 12px;
    padding: 6px 12px;
}
.btn.fw {
    width: 100%;
}

/* Button Inside <button> Tag */
button.btn {
    border: none;
}

.btn.bordered {
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Click Animation */
.btn:active {
    transform: scale(0.96);
}

/* Disabled Button Style */
.btn[disabled],
.btn.disable,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(50%);
}

/* Disabled Button Hover (No Effect) */
.btn[disabled]:hover,
.btn.disable:hover,
.btn.disabled:hover {
    background: inherit !important;
    color: inherit !important;
    box-shadow: none;
}

/* Disabled Button Inside <button> */
button.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(50%);
}
/* Base Loader (Hides Text) */
.btn.loader,
.loader {
    position: relative;
    color: transparent !important;
    pointer-events: none;
	opacity: 0.6;
}

/* Default Spinner */
.btn.loader::after,
.loader::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    transform: translate(-50%, -50%);
}

/*  Different Sizes */
.btn.loader::after,
.loader::after { width: 16px; height: 16px; }

.btn.small.loader::after,
.small.loader::after { width: 16px; height: 16px; }

.btn.mini.loader::after,
.mini.loader::after { width: 12px; height: 12px; }

.btn.big.loader::after,
.big.loader::after { width: 24px; height: 24px; }

/* Loading Animation */
@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


[data-tooltip] {
    --arrow-size: 5px;
    position: relative;
    z-index: 10;
}

/* Positioning and visibility settings of the tooltip */
[data-tooltip]:before,
[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    bottom: calc(100% + var(--arrow-size));
    pointer-events: none;
    transition: 0.2s;
    will-change: transform;
}

/* The actual tooltip with a dynamic width */
[data-tooltip]:before {
    content: attr(data-tooltip);
    padding: 10px 18px;
    min-width: 50px;
    max-width: 300px;
    width: max-content;
    border-radius: 6px;
    font-size: 14px;
    background-color: rgba(9, 9, 9, 0.9);
    background-image: linear-gradient(30deg,
    rgba(59, 72, 80, 0.44),
    rgba(59, 68, 75, 0.44),
    rgba(60, 82, 88, 0.44));
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    white-space: pre-wrap;
    transform: translate(-50%,  calc(0px - var(--arrow-size))) scale(0.5);
}

/* Tooltip arrow */
[data-tooltip]:after {
    content: '';
    border-style: solid;
    border-width: var(--arrow-size) var(--arrow-size) 0 var(--arrow-size);
    border-color: rgba(9, 9, 9, 0.9) transparent transparent transparent;
    transition-duration: 0s;
    transform-origin: top;
    transform: translateX(-50%) scaleY(0);
}

/* Tooltip becomes visible at hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}
/* Scales from 0.5 to 1 -> grow effect */
[data-tooltip]:hover:before {
    transition-delay: 0.2s;
    transform: translate(-50%, calc(0px - var(--arrow-size))) scale(1);
}
[data-tooltip]:hover:after {
    transition-delay: 0.4s; /* Starting after the grow effect */
    transition-duration: 0.2s;
    transform: translateX(-50%) scaleY(1);
}

/* LEFT */
/* Tooltip + arrow */
[data-tooltip-location="left"]:before,
[data-tooltip-location="left"]:after {
    left: auto;
    right: calc(100% + var(--arrow-size));
    bottom: 50%;
}

/* Tooltip */
[data-tooltip-location="left"]:before {
    transform: translate(calc(0px - var(--arrow-size)), 50%) scale(0.5);
}
[data-tooltip-location="left"]:hover:before {
    transform: translate(calc(0px - var(--arrow-size)), 50%) scale(1);
}

/* Arrow */
[data-tooltip-location="left"]:after {
    border-width: var(--arrow-size) 0 var(--arrow-size) var(--arrow-size);
    border-color: transparent transparent transparent rgba(9, 9, 9, 0.9);
    transform-origin: left;
    transform: translateY(50%) scaleX(0);
}
[data-tooltip-location="left"]:hover:after {
    transform: translateY(50%) scaleX(1);
}



/* RIGHT */
[data-tooltip-location="right"]:before,
[data-tooltip-location="right"]:after {
    left: calc(100% + var(--arrow-size));
    bottom: 50%;
}

[data-tooltip-location="right"]:before {
    transform: translate(var(--arrow-size), 50%) scale(0.5);
}
[data-tooltip-location="right"]:hover:before {
    transform: translate(var(--arrow-size), 50%) scale(1);
}

[data-tooltip-location="right"]:after {
    border-width: var(--arrow-size) var(--arrow-size) var(--arrow-size) 0px;
    border-color: transparent rgba(9, 9, 9, 0.9) transparent transparent;
    transform-origin: right;
    transform: translateY(50%) scaleX(0);
}
[data-tooltip-location="right"]:hover:after {
    transform: translateY(50%) scaleX(1);
}



/* BOTTOM */
[data-tooltip-location="bottom"]:before,
[data-tooltip-location="bottom"]:after {
    top: calc(100% + var(--arrow-size));
    bottom: auto;
}

[data-tooltip-location="bottom"]:before {
    transform: translate(-50%, var(--arrow-size)) scale(0.5);
}
[data-tooltip-location="bottom"]:hover:before {
    transform: translate(-50%, var(--arrow-size)) scale(1);
}

[data-tooltip-location="bottom"]:after {
    border-width: 0px var(--arrow-size) var(--arrow-size) var(--arrow-size);
    border-color: transparent transparent rgba(9, 9, 9, 0.9) transparent;
    transform-origin: bottom;
}

/* Terms - Policy */
.tos h1 {
    font-weight: 600;
}
.tos h3 {
    font-weight: 600;
    font-size: 20px;
}

/* Forms box */

.sizes_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

.sizes_box {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px
}


.size_box{flex:0 0 25%;overflow:hidden;padding:12px;}
.size_box a{transition:box-shadow 0.3s,border-color 0.3s,transform 0.3s,-webkit-transform 0.3s;display:block;height:100%;position:relative;border-radius:8px;padding:18px; border:1px solid var(--border-color);box-shadow:var(--border-color);}
.size_box a:hover{color: black; border:1px solid var(--primary_color);box-shadow:0 2px 12px rgba(53,71,90,.2),0 0 0 1px rgba(68,92,116,.02);-webkit-transform:translateY(-1px);transform:translateY(-1px);}
.size_box a:hover svg{-webkit-transform:scale(1.1);transform:scale(1.1);}
.size_box a h4{margin:12px 0 6px;font-weight:500;font-size:1.4em;}
.size_box a p{margin:0;color:var(--text_color_secondray);font-size:1em;}
.size_box a svg{width:36px;height:36px;fill:var(--primary_color);}

@media (max-width: 1023px){
    .size_box{flex:0 0 33.3333%;}
}
@media (max-width: 899px){
    .size_box{flex:0 0 50%;}
}
@media (max-width: 599px){
    .size_box{flex:0 0 100%;}
}

/* Padding & margin */

.pt10 {
    padding-top: 10px;
}
.pt15 {
    padding-top: 15px;
}
.pt20 {
    padding-top: 20px;
}
.pt25 {
    padding-top: 25px;
}
.pt30 {
    padding-top: 30px;
}
.pb15 {
    padding-bottom: 15px;
}
.pb20 {
    padding-bottom: 15px;
}
.pb25 {
    padding-bottom: 15px;
}
.pb30 {
    padding-bottom: 15px;
}
.p10 {
    padding: 10px 0;
}
.p15 {
    padding: 15px 0;
}
.p20 {
    padding: 20px 0;
}
.p25{
    padding: 25px 0;
}
.p30{
    padding: 30px 0;
}
.m0 {
    margin: 0;
}
.mlr0 {
    margin-left: 0;
    margin-right: 0;
}
.mt20 {
    margin-bottom: 20px;
}
.mb20 {
    margin-bottom: 20px;
}
.mt15 {
    margin-bottom: 15px;
}
.mb15 {
    margin-bottom: 15px;
}

.sb {
    display: flex;
    justify-content: space-between;
}