/* Header Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.post-thumbnail,
.entry-content .wp-audio-shortcode,
.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),
*[class*=inner-container]>*:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),
.default-max-width {
    max-width: 1320px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
button,
input,
textarea {
    font-family: 'Work Sans', sans-serif !important;
}

a:focus {
    background-color: #e21e2600 !important;
}

.container {
    width: 1320px;
    margin: 0 auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.top-bar {
    background: #1e1e1e;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar span {
    margin-right: 15px;
    display: flex;
    font-size: 14px;
}

.top-bar span a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    margin: 0 10px;
}

.top-left {
    display: flex;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 90px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    margin-left: 8px;
    text-decoration: none;
    font-size: 20px;
}

.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo img {
    max-height: 50px;
}

.header-right {
    width: 70%;
    gap: 25px;
    display: flex;
    justify-content: flex-end;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;

}

.menu li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

.menu li a:hover,
.menu li.current-menu-item a {
    color: #e21e26;
}

.btn-signup,
.site-button,
.woocommerce-checkout-payment .form-row .button#place_order, .ld-course-list-items .ld_course_grid .btn-primary {
    background: #e21e26 !important;
    color: #fff !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.btn-signup {
    padding: 10px 20px;
}

.btn-signup:hover,
.btn-signup:focus,
.site-button:hover,
.site-button:focus,
.woocommerce-checkout-payment .form-row .button#place_order:hover,
.woocommerce-checkout-payment .form-row .button#place_order:focus{
    background: #c0181f !important;
}

.site-footer {
    background: #5E676B;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 !important;
}

.site-footer .footer-copyright {
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
    margin: auto;
    height: 50px;
    align-items: center;
}

.site-footer .footer-copyright span,
.site-footer .footer-copyright span a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

/* home hero section */

.home-hero {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.hero-wrapper {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-left {
    width: 50%;
    color: #fff;
}

.hero-logo {
    width: 180px;
    margin-bottom: 30px;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.video-box {
    position: relative;
    width: 660px;
    height: 390px;
    border-radius: 12px;
    overflow: hidden;
}

.video-box video,
.video-box .video-cover {
    width: 100%;
    display: block;
    height: 100%;
    border-radius: 12px;
}

.play-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}




/* Logo Section  */

.logo-section {
    padding: 80px 0;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.logo-track img {
    height: 50px;
    margin: 0 50px;
    opacity: 0.8;
    transition: 0.3s;
}

.logo-track img:hover {
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* CARD DESIGN */
.highlight-box {
    background: #3b0000;
    color: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    margin: auto;
}

.highlight-box h2 {
    font-size: 48px;
    font-weight: 600;
    width: 90%;
    margin: 0 auto 30px;
}

.highlight-box h2 span {
    color: #ff2d2d;
}

.highlight-box p {
    font-size: 30px;
    opacity: 0.9;
}

.highlight-box p span {
    color: #ff2d2d;
    font-weight: 600;
}

/* Wisdom section */

.wisdom-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.wisdom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wisdom-left {
    width: 47%;
    color: #fff;
}

.wisdom-left h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
}

.wisdom-left p {
    font-size: 24px;
    line-height: 1.7;
    opacity: 0.9;
}

.wisdom-right {
    width: 50%;
    display: block;
}

.wisdom-card {
    background: #ffffff33;
    padding: 24px;
    border-radius: 20px;
    max-width: 100%;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.wisdom-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.wisdom-card h4::after {
    content: "";
    width: 100%;
    position: absolute;
    height: 1px;
    left: 0;
    background: #FFFFFF33;
    bottom: -10px;
}

.wisdom-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.wisdom-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 11px;
    font-size: 15px;
    line-height: 1.6;
}

.wisdom-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url(../images/disc.png);
    border-radius: 50%;
}

/* Experts section */

.experts-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin: 0 auto 50px;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 100px;
}

.expert-card {
    background: #F7F7F7;
    border-radius: 14px;
    padding: 10px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid #EB28271A;
}

.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.expert-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.expert-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #C62828;
    margin-bottom: 8px;
}

.expert-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.experts-cta {
    background: #1B0000;
    color: #fff;
    height: 150px;
    gap: 50px;
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    font-size: 48px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Download Section */

.download-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.download-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-left {
    width: 40%;
}

.download-left h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
}

.download-right {
    display: flex;
    gap: 30px;
    width: 55%;
}

.store-btn img {
    height: 88px;
    transition: 0.3s;
}

.store-btn:hover img {
    transform: translateY(-4px);
}


/* CTA Section */

.contact-section {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-card {
    background: #F7F7F7;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-left {
    width: 55%;
}

.contact-left h3 {
    font-size: 48px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 20px;
    color: #C62828;
}


.contact-left p {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

.contact-right {
    padding: 24px;
    /*width: 50%;*/
    background: #fff;
    border-radius: 15px;
}

.contact-right h4 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-right p {
    font-size: 24px;
    font-weight: 400;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 400;
}

.contact-info i {
    color: #EB2827;
    font-size: 16px;
}


.wpcf7 form {
    margin: 0;
}

.wpcf7-form p {
    margin: 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.wpcf7-form p span.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-form p br {
    display: none;
}


.contact-right .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}


.contact-right .wpcf7 input[type="text"],
.contact-right .wpcf7 input[type="email"] {
    width: 100%;
    padding: 14px;
    outline: 0;
    border-radius: 15px;
    border: 1px solid #C6282833;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
}


.contact-right .wpcf7 input[type="submit"] {
    width: 130px;
    background: #EB2827 !important;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right .wpcf7 input[type="submit"]:hover {
    background: #ff4747;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin: 15px 0 0 !important;
}


/* Contact page style */

.p360-contact-section {
    background-image: url('http://192.168.0.107/pendulam-360/wp-content/uploads/2026/02/CTA-BG.png');
    padding: 100px 5%;
    position: relative;
    color: #fff;
}

.p360-contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1320px;
    margin: auto;
    flex-wrap: wrap;
}

.p360-contact-info,
.p360-contact-form {
    flex: 1;
    background: #F7F7F7;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.08);
}

.p360-contact-info h2,
.p360-contact-form h2 {
    color: #C62828;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-block {
    margin-bottom: 25px;
}

.contact-block h4 {
    color: #C62828;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
}

.contact-block p {
    margin: 4px 0;
    color: #000;
}

.contact-block p a {
    text-decoration: none;
}

.wpcf7 form {
    margin: 0;
}

.p360-form-group {
    margin-bottom: 20px;
}

.p360-contact-form input,
.p360-contact-form textarea {
    width: 100%;
    background: #ffffff33;
    border: 0;
    border-bottom: 1px solid #000000;
    padding: 15px;
    color: #ffffff;
    font-size: 15px;
    transition: 0.3s ease;
}

.p360-contact-form input:focus,
.p360-contact-form textarea:focus {
    border-color: #ff2a2a;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
    outline: none;
}

.p360-contact-form input::placeholder,
.p360-contact-form textarea::placeholder {
    color: #888;
}

.p360-contact-form input[type="submit"] {
    background: #e21e26 !important;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    width: auto;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p360-contact-form input[type="submit"]:hover {
    background: #c0181f !important;
}


/* Blog listing page css */


.p360-blog-section {
    background: #fff;
    padding: 0 0 100px;
}

.p360-blog-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.p360-blog-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.p360-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
}

.p360-blog-image {
    position: relative;
}

.p360-blog-image img {
    width: 100%;
    display: block;
}

.p360-blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #ffffff;
    color: #c62828;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.p360-blog-content {
    padding: 25px;
}

.p360-blog-content h3,
.ld-course-list-items .ld_course_grid .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

.p360-blog-content h3 a {
    text-decoration: none;
}

.p360-blog-card:hover h3 {
    color: #e10600;
}

.p360-blog-content p,
.ld-course-list-items .ld_course_grid .thumbnail .caption p {
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.p360-read-more {
    text-decoration: none;
    font-weight: 600;
    color: #e10600;
    position: relative;
}

.p360-read-more::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #e10600;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.p360-read-more:hover::after {
    width: 100%;
}

.p360-blog-hero {
    background: #fff;
    padding: 80px 20px 40px;
    text-align: center;
}

.entry-header {
    text-align: center;
    padding: 80px 0 0 !important;
    border: 0 !important;
    margin-bottom: 40px !important;
    z-index:0;
}

.p360-blog-title,
.summit-title,
.entry-header .entry-title {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: inline-block;
}

.p360-blog-title::after,
.summit-title::after,
.entry-header .entry-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #e10600;
    display: block;
    margin: 15px auto 0;
}


/* single post css */



.p360-container {
    max-width: 1320px;
    margin: auto;
    padding: 80px 20px;

}

/* FEATURED IMAGE */
.p360-featured-image img {
    width: 100%;
    border-radius: 14px;
    margin: 60px 0 40px;
}

/* TITLE + RED BORDER */
.p360-title-meta {
    margin-bottom: 30px;
}

.p360-single-title {
    font-size: 38px;
    font-weight: 600;
    color: #222;
    padding-left: 18px;
    border-left: 5px solid #c62828;
    margin-bottom: 10px;
}

.woocommerce div.product div.images img {
    max-width: 100% !important;
}

/* CATEGORY */
.p360-meta {
    padding-left: 18px;
}

.p360-category {
    color: #c62828;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CONTENT */
.p360-single-content {
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.p360-single-content p {
    margin-bottom: 20px;
}

/* VIDEO */
.p360-video-section {
    margin: 60px 0;
}

.p360-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.p360-video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* NAVIGATION */
.p360-post-navigation {
    padding: 40px 0 80px;
    border-top: 1px solid #eee;
}

.p360-nav-flex {
    display: flex;
    justify-content: space-between;
}

.p360-post-navigation a {
    text-decoration: none;
    font-weight: 600;
    color: #c62828;
    transition: 0.3s;
}

.p360-post-navigation a:hover {
    color: #000;
}

/* Video Listing css  */

.summit-video-section {
    background: #ffffff;
    padding: 80px 0;
}

.summit-title {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.summit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.summit-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.summit-card a {
    text-decoration: none;
}

.summit-card:hover {
    transform: translateY(-5px);
}

.summit-thumb {
    position: relative;
}

.summit-thumb img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.play-btn:after {
    width: 0;
    height: 0;
    margin-left: 2px;
    border-style: solid;
    border-width: 15px 0 15px 22px;
    border-color: transparent transparent transparent #fff;
    content: "";
}

.video-title {
    color: #e21e26;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
}

.summit-pagination {
    text-align: center;
    margin-top: 50px;
}

.summit-pagination a {
    color: #fff;
    padding: 5px 10px;
    background: #e21e26;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
}

.summit-pagination a:hover,
.summit-pagination a:focus {
    background: #c0181f !important;
}

.summit-pagination .current {
    color: #fff;
    padding: 5px 10px;
    background: #1E1E1E;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
}

.summit-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.summit-filters input {
    padding: 10px 15px;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.summit-filters select {
    padding: 10px;
    width:200px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.summit-filters button {
    padding: 10px 20px !important;
    background: #ff3b3b !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
}

/* Single Video page css */


.summit-single-video {
    padding: 60px 0;
    background: #fff;
}


.summit-video-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #e53935;
}

.summit-video-player {

    max-width: 1000px;
    margin: auto;

}

.summit-video-player iframe {

    width: 100%;
    height: 560px;

}

.video-navigation {

    display: flex;
    justify-content: space-between;
    margin-top: 40px;

}

.video-navigation a {
    background: #e21e26;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.video-navigation a:hover,
.video-navigation a:focus {
    background: #C0181F !important;
}

.ld-course-list-content {
    max-width: 1320px !important;
}

.ld-course-list-items .ld_course_grid .thumbnail .caption p {
    margin: 0 !important;
}

.ld-course-list-items .ld_course_grid .entry-content {
    margin: 10px 0 20px !important;
}

.ld-course-list-items .ld_course_grid .thumbnail.course .ribbon.enrolled {
    background: #c0181f;
}

/*.ld-course-list-items .ld_course_grid .btn-primary {*/
/*    font-size: 16px !important;*/
/*    color: #ffffff !important;*/
/*    border: 0;*/
/*    width: auto !important;*/
/*    background-color: #c0181f !important;*/
/*}*/

.ld-course-list-items .ld_course_grid .btn-primary:hover {
    background: #c0181f !important;
}



/* About page */


.about-hero-light {
    background: #fff;
    padding: 80px 20px;
}

.about-hero-light .container {
    max-width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-left {
    flex: 1;
}

.about-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
}

.about-left h1 span {
    color: #e11d2e;
}

.about-left h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.6;
}

.about-left h3 span {
    color: #e11d2e;
    font-weight: 600;
}

.about-left p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #000;
}

.about-left strong {
    color: #000;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.benefits-section {
    position: relative;
    padding: 80px 20px;
    background-attachment: fixed !important;
}

.benefits-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.09);
    /* light overlay */
}

.benefits-section .container {
    position: relative;
    margin: auto;
}

.benefits-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 600;
    color: #000;
}

.benefits-section h2 span {
    color: #e11d2e;
}

.benefits-section .content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.left {
    flex: 1;
}

.left img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.right {
    flex: 1;
}

.right ul {
    list-style: none;
    padding: 0;
}

.right li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}

.right li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: #e11d2e;
    border-radius: 50%;
}




/* SECTION */
.skills-section {
    padding: 80px 20px;
    background: #f7f7f9;
}

.skills-section .container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.skills-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #000;
    font-weight: 600;
}

/* GRID LAYOUT (3 + 4 SYSTEM) */
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* TOP 3 */
.grid .card:nth-child(1),
.grid .card:nth-child(2),
.grid .card:nth-child(3) {
    grid-column: span 4;
}

/* BOTTOM 4 */
.grid .card:nth-child(4),
.grid .card:nth-child(5),
.grid .card:nth-child(6),
.grid .card:nth-child(7) {
    grid-column: span 3;
}

/* CARD */
.card {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* DARK OVERLAY */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: 0.3s;
}

/* TEXT */
.card h3 {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}





.features-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.features-section h3 {
    color: #000;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    width: 23%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.feature span {
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
}

.feature p {
    position: relative;
    font-size: 14px;
    padding-top: 10px;
    color: #000;
}

.feature p::before {
    content: "";
    width: 80%;
    position: absolute;
    margin: auto;
    height: 1px;
    top: 3px;
    background: #000;
    right: 26px;
}



.highlight-banner {
    color: #fff;
    padding: 80px 20px;
    text-align: left;
    background-attachment: fixed !important;
}

.highlight-banner .container {
    /*max-width: 1320px;*/
    margin: auto;
}

.highlight-banner h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-banner p {
    color: #ccc;
    line-height: 1.6;
}








.content-section-pro {
    padding: 100px 20px;
    background: #f7f7f9;
}

.content-section-pro .content-box {
    display: flex;
    align-items: center;
    gap: 10px 60px;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.content-section-pro .content-text {
    flex: 1;
}

.content-section-pro h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
    width: 100%;
}

.content-section-pro h2 span {
    color: #e11d2e;
}

.content-section-pro .content-text p {
    color: #000;
    margin-bottom: 15px;
    line-height: 1.6;
}

.content-section-pro .btn-red {
    display: inline-block;
    background: #e11d2e;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.content-section-pro .btn-red:hover {
    background: #c91825;
}

.content-section-pro .content-img {
    flex: 1;
}

.content-section-pro .content-img img {
    width: 100%;
    border-radius: 12px;
}






.contact-section-pro-cta {
    padding: 100px 20px;
    background: #f7f7f9;
}

.contact-section-pro-cta .contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.contact-section-pro-cta .contact-left {
    flex: 1;
}

.contact-section-pro-cta .contact-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-section-pro-cta .contact-left p {
    color: #555;
    margin-bottom: 20px;
}

.contact-section-pro-cta .contact-info p {
    margin-bottom: 8px;
}

.contact-section-pro-cta .contact-right {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-section-pro-cta .contact-right h3 {
    margin-bottom: 20px;
}

.contact-section-pro-cta .contact-right input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.contact-section-pro-cta .contact-right button {
    width: 100%;
    padding: 12px;
    background: #e11d2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-section-pro-cta .contact-right button:hover {
    background: #c91825;
}








.auth-page {
    display: flex;
    min-height: 90vh;
    background: #f5f5f5;
}

.auth-left {
    width: 50%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-left h1 {
    font-size: 42px;
    font-weight: 700;
}

.auth-left p {
    margin-top: 15px;
    color: #666;
}

.auth-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card {
    width: 380px;
    padding: 40px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Toggle */
.auth-toggle {
    display: flex;
    margin-bottom: 25px;
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    background: #eee;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: #e60023 !important;
    color: #fff;
}

/* Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.auth-form button {
    padding: 15px 20px;
    background: #e60023 !important;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: auto;
    font-weight: 500;
    font-size: 16px;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.auth-options label {
    display: flex;
    gap: 7px;
    align-items: center;
}

.auth-options label input {
    padding: 0;
    display: flex;
    width: 25px;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.auth-options label input[type=checkbox]:after {
    left: 7px;
    top: 4px;
}

.woocommerce-form.register .woocommerce-privacy-policy-text p {
    font-size: 18px;
    margin-bottom: 20px;
}






/* ONLY My Account */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    color: #333;
    transition: 0.3s;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .is-active a {
    background: #e60023;
    color: #fff;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}


.account-dashboard-content {
    max-width: 800px;
}

.account-dashboard-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.account-dashboard-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.account-dashboard-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.account-dashboard-content a#launch-cta {
    display: inline-block;
    background: #e21e26;
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 10px;
    line-height: normal;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.account-dashboard-content a#launch-cta:hover {
    background: #c0181f;
}

.account-dashboard-content iframe.my-account-video {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

.account-dashboard-content h3+p {
    margin-top: 5px;
}

.account-dashboard-content h3 {
    border-left: 4px solid #e60023;
    padding-left: 10px;
}

.yith-wcmap .user-profile .user-avatar img {
    border-radius: 50% !important;
    width: 70px;
}

.yith-wcmap .user-profile .user-avatar.avatar-upload:after {
    right: -1px !important;
    bottom: -7px !important;
    width: 25px !important;
    height: 25px !important;
    background-position: center !important;
    background-size: 12px !important;
}

#my-account-menu.layout-modern .myaccount-menu>li.active {
    border-color: #e21e26 !important;
    box-shadow: 0 0 16px 0 #e21e2629 !important;
}

#my-account-menu .myaccount-menu li.active a {
    color: #e21e26 !important;
}

.custom-feedback-form {
    max-width: 45%;
    margin: auto;
    padding: 25px 50px;
    margin-top: 20px;
    margin-bottom: 80px;
    background: #F9F9F9;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.08);
}

.custom-feedback-form>p {
    text-align: center;
}


.custom-feedback-form input,
.custom-feedback-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 12px 0;
    background: transparent;
    font-size: 16px;
    transition: 0.3s;
}

.custom-feedback-form input:focus,
.custom-feedback-form textarea:focus {
    outline: none;
    border-bottom: 2px solid #e60023;
}

.custom-feedback-form .form-group {
    margin-bottom: 25px;
}

.custom-feedback-form textarea {
    min-height: 120px;
    resize: none;
}

.custom-feedback-form input[type="submit"] {
    background: #e21e26 !important;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: auto;
    transition: 0.3s;
}

.custom-feedback-form input[type="submit"]:hover {
    background: #c0181f !important;
}












.woocommerce ul.products li.product {
    width: 100% !important;
    float: none !important;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    padding-left: 20px;
    padding-right: 20px;
}

.woocommerce ul.products li.product h2 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
}

.woocommerce ul.products li.product .price {
    color: #000000;
    font-weight: 600;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .button {
    margin: 0 20px 20px;
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    background: #e21e26 !important;
    color: #fff !important;
    border-radius: 10px;
    text-align: center;
}

.woocommerce ul.products li.product .button:hover {
    background: #c0181f !important;
    color: #fff;
}

.woocommerce span.onsale {
    background: #e21e26;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    top: 5px !important;
    right: 5px !important;
    margin: 0 !important;
    align-items: center;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
    content: none;
}

.woocommerce .woocommerce-ordering select {
    border: 0;
    border-bottom: 1px solid;
    font-size: 16px;
    outline: 0;
}

.xoo-el-container:not(.xoo-el-style-slider) .xoo-el-inmodal {
    max-width: 500px;
    max-height: 417px;
}

.xoo-el-container:not(.xoo-el-style-slider) .xoo-el-inmodal .xoo-el-sidebar {
    display: none;
}


.wpmenucartli .wpmenucart-contents {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1E1E1E;
    color: #fff;
    border-radius: 50%;
}

.wpmenucartli .cartcontents {
    font-size: 12px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    line-height: 12px;
    text-align: center;
}


#ld-propanel-pagesize {
    padding-top: 0;
    padding-bottom: 0;
    outline: 0;
    border: 0;
    border-bottom: 1px solid;
    background: transparent;
}

.reporting-actions .button,
.reporting-btn a,
.single_add_to_cart_button {
    background: #e21e26 !important;
    color: #fff !important;
    padding: 15px 20px !important;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.reporting-actions .button:hover,
.single_add_to_cart_button:hover {
    background: #c0181f !important;
}

.ld-propanel-widget-overview .propanel-stat .stat {
    color: #e21e26 !important;
}

.ld-propanel-widget-overview .propanel-stat .stat-inner:hover {
    background: #fff !important;
    color: #000 !important;
}








.corp-redesign {
    position: relative;
    padding: 100px 0;
    background: #000;
    overflow: hidden;
}

.corp-redesign .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(255, 0, 0, 0.25), transparent 60%);
    z-index: 1;
}

.corp-redesign .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.corp-redesign .content {
    max-width: 550px;
    color: #fff;
}

.corp-redesign .content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.corp-redesign .content p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
}

.corp-redesign .content strong {
    color: #fff;
}

.corp-redesign .image {
    flex: 1;
    height: 415px;
    border-radius: 10px;
    opacity: 0.6;
}




.p360-single-content p.price {
    font-size: 24px !important;
    color: #e21e26 !important;
    font-weight: 600;
}

.p360-single-content .woocommerce-product-details__short-description p {
    color: #000;
}

.woocommerce div.product form.cart .variations select,
.woocommerce .quantity .qty {
    border: 0;
    outline: 0;
    border-bottom: 1px solid;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 20%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background-color: #e21e26;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover {
    background-color: #c0181f;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a {
    color: #fff;
}

.related h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}


.woocommerce table.shop_attributes {
    border: none;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    border: none !important;
    padding: 12px 16px;
}

.woocommerce table.shop_attributes tr {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocommerce table.shop_attributes th {
    font-weight: 600;
    font-size: 14px;
    color: #555;
    width: 40%;
}

.woocommerce table.shop_attributes td {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-align: right;
    width: 60%;
}

.woocommerce table.shop_attributes tr:nth-child(even) {
    background: #f2f2f2;
}

.woocommerce-Tabs-panel h2 {
    font-size: 38px;
    color: #000;
    font-weight: 600;
}


.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
    background: #e21e26 !important;
    opacity: 1;
}







.woocommerce-cart table.shop_table {
    border: none;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.woocommerce-cart table.shop_table thead {
    display: none;
}

.woocommerce-cart table.shop_table tr {
    border: none;
}

.woocommerce-cart table.shop_table tr.cart_item {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    background: #f8f8f8;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
}

.woocommerce-cart table.shop_table td {
    border: none !important;
    padding: 0;
}

.product-thumbnail {
    grid-column: 1;
}

.product-name {
    grid-column: 2;
}

.product-price {
    grid-column: 3;
}

.product-quantity {
    grid-column: 4;
}

.product-subtotal {
    grid-column: 5;
    text-align: right;
}

.product-thumbnail img {
    width: 80px;
    border-radius: 10px;
}

.product-name a {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    line-height: 1.4;
}

.product-price,
.product-subtotal {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.product-quantity input.qty {
    width: 60px;
    text-align: center;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-size: 15px;
    outline: none;
}

.product-remove {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.product-remove a {
    color: red;
    font-size: 18px;
    text-decoration: none;
}

.woocommerce-cart .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.woocommerce-cart .coupon input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.woocommerce-cart button,
.woocommerce-cart .button {
    background: #e21e26 !important;
    color: #fff !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.woocommerce-cart button:disabled {
    opacity: 0.5;
}

.cart_totals {
    margin-top: 40px;
}

.cart_totals h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.cart_totals table {
    border: none;
}

.cart_totals th,
.cart_totals td {
    border: none;
    padding: 10px 0;
    font-size: 15px;
}

.cart_totals .order-total td {
    font-weight: 700;
    font-size: 18px;
}

.checkout-button {
    width: 100%;
    background: #111;
    color: #fff;
    font-size: 16px;
    padding: 18px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.woocommerce-page table.cart td.actions .coupon {
    width: 40%;
}

.woocommerce-page table.cart td.actions .coupon .input-text {
    width: 65% !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
    width: 35%;
}

.woocommerce-cart .cart-collaterals .cart_totals table th{
    width:50% !important;
    border:0 !important;
}

.woocommerce-cart .cart_totals table.shop_table td{
    text-align:right;
}













/*.woocommerce-checkout form.checkout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}



.woocommerce-checkout #order_review {
  width: 35%;
}


.woocommerce-checkout h3 {
  color: #c62828;
  font-size: 28px;
  margin-bottom: 20px;
}
*/

form.woocommerce-checkout{
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

form.woocommerce-checkout #order_review_heading{
    display: none;
}

form.woocommerce-checkout .woocommerce-checkout-review-order{
    width: 37.5%;
}

.woocommerce-checkout .col2-set {
  width: 57.5%;
  margin-right: 65px;
  display: flex;
  flex-direction: column;
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label{
    line-height: normal;
    margin-bottom:0;
    margin-top:30px;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
    width: 100%;
}


.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
  width: 100% !important;
  border: none !important;
  border-bottom: 1px solid #999 !important;
  background: transparent !important;
  padding: 10px 5px !important;
  font-size: 14px !important;
  transition: 0.3s !important;
}


.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
  outline: none !important;
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before{
    color:#e10600 !important;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message{
    border-top-color:#e10600 !important;
}

body.woocommerce-checkout{
    overflow-x: hidden;
}

/*.woocommerce-checkout label {*/
/*  font-size: 13px;*/
/*  color: #000;*/
/*}*/


/*#order_review {*/
/*  background: #fafafa;*/
/*  padding: 25px;*/
/*  border-radius: 10px;*/
/*  border: 1px solid #eee;*/
/*}*/


/*#order_review table {*/
/*  border: none;*/
/*}*/

/*#order_review th,*/
/*#order_review td {*/
/*  border: none;*/
/*  padding: 10px 0;*/
/*}*/


/*#place_order {*/
/*  width: 100%;*/
/*  background: #e53935;*/
/*  color: #fff;*/
/*  padding: 14px;*/
/*  border-radius: 6px;*/
/*  font-size: 15px;*/
/*  border: none;*/
/*  transition: 0.3s;*/
/*}*/

/*#place_order:hover {*/
/*  background: #c62828;*/
/*}*/


/*.woocommerce-info,*/
/*.woocommerce-form-coupon-toggle {*/
/*  background: transparent;*/
/*  border: none;*/
/*  padding: 0;*/
/*}*/


/*.woocommerce-checkout textarea {*/
/*  min-height: 80px;*/
/*}*/

.ttt-pnwc-notice{
    justify-content: flex-start;
}

.ttt-pnwc-message{
    line-height: 20px;
    font-size: 16px;
}

.select2-container--default .select2-selection--single{
    border:0;
    border-bottom: 1px solid #aaa;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table{
    border: 0;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody th,.woocommerce table.shop_table.woocommerce-checkout-review-order-table thead th,.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody td, .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot td, .woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot th{
    border:0 !important;
    border-bottom:1px solid #000 !important;
    text-align:left !important;
}