:root {
    --color-orange: #FF6334;
    --color-white: #FFFFFF;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Open Sans', Arial, Sans-serif;
    font-size: 16px;
    padding-bottom: 200px;
}

body * {
    box-sizing: border-box;
}

/*
 * Text and navigation link styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */

a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25ch;
}

a:hover,
a:focus {
	text-decoration-style: dashed;
}

a:active {
	text-decoration: none;
}

.wp-block-navigation .wp-block-navigation-item a:hover,
.wp-block-navigation .wp-block-navigation-item a:focus {
	text-decoration: underline;
	text-decoration-style: solid;
}

/*
 * Search and File Block button styles.
 * Necessary until the following issues are resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/36444
 * https://github.com/WordPress/gutenberg/issues/27760
 */

.wp-block-search__button,
.wp-block-file .wp-block-file__button {
	background-color: var(--wp--preset--color--primary);
	border-radius: 0;
	border: none;
	color: var(--wp--preset--color--background);
	font-size: var(--wp--preset--font-size--medium);
	padding: calc(.667em + 2px) calc(1.333em + 2px);
}

/*
 * Button hover styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */

.wp-block-search__button:hover,
.wp-block-file .wp-block-file__button:hover,
.wp-block-button__link:hover {
	opacity: 0.90;
}

/*
 * Alignment styles.
 * These rules are temporary, and should not be relied on or
 * modified too heavily by themes or plugins that build on
 * Twenty Twenty-Two. These are meant to be a precursor to
 * a global solution provided by the Block Editor.
 *
 * Relevant issues:
 * https://github.com/WordPress/gutenberg/issues/35607
 * https://github.com/WordPress/gutenberg/issues/35884
 */

.wp-site-blocks,
body > .is-root-container,
.edit-post-visual-editor__post-title-wrapper,
.wp-block-group.alignfull,
.wp-block-group.has-background,
.wp-block-cover.alignfull,
.is-root-container .wp-block[data-align="full"] > .wp-block-group,
.is-root-container .wp-block[data-align="full"] > .wp-block-cover {
	padding-left: var(--wp--custom--spacing--outer);
	padding-right: var(--wp--custom--spacing--outer);
}

.wp-site-blocks .alignfull,
.wp-site-blocks > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-cover,
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-template-part > .wp-block-cover,
body > .is-root-container > .wp-block-cover,
body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
body > .is-root-container > .wp-block-template-part > .wp-block-cover,
.is-root-container .wp-block[data-align="full"] {
	margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
	margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
	width: unset;
}

/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"],
/* We also want to avoid stacking negative margins. */
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] {
	margin-left: auto !important;
	margin-right: auto !important;
	width: inherit;
}

/*
 * Responsive menu container padding.
 * This ensures the responsive container inherits the same
 * spacing defined above. This behavior may be built into
 * the Block Editor in the future.
 */

.wp-block-navigation__responsive-container.is-menu-open {
	padding-top: var(--wp--custom--spacing--outer);
	padding-bottom: var(--wp--custom--spacing--large);
	padding-right: var(--wp--custom--spacing--outer);
	padding-left: var(--wp--custom--spacing--outer);
}

/*
 * Improves spacing for the legacy Post Comments block.
 * https://core.trac.wordpress.org/ticket/57560
 */

.wp-block-post-comments ol.commentlist ul.children {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.wp-block-post-comments ol.commentlist li.comment:not(:last-child) {
	margin-bottom: 1rem;
}

/* CSS ICON */

/* GENERAL */

.container {
    width: min(90%, 1124px);
    margin-inline: auto;
    box-sizing: border-box;
}

.d-flex {
    display: flex;
}

.invisible {
    visibility: hidden;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.color-white {
    color: #ffffff;
}

.text-center {
    text-align: center;
}

.text-error {
    font-size: 14px;
    color: #ff0000;
    margin-top: 0;
}

.mt-2 {
    margin-top: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 0.75em 2em;
    line-height: 1;
    background: #1277bd;
    color: white;
    font-weight: bold;
    border-radius: 7px;
    font-size: 14px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    letter-spacing: .05em;
    transition: .25s ease all;
    max-width: 100%;
    text-decoration: none;
    text-align: center;
}
.btn-secondary {
    display: inline-block;
    padding: 0.75em 2em;
    line-height: 1;
    background: #aaaaaa;
    color: white;
    font-weight: bold;
    border-radius: 7px;
    font-size: 14px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    letter-spacing: .05em;
    transition: .25s ease all;
    max-width: 100%;
    text-decoration: none;
    border: none;
    text-align: center;
}
button.btn-primary {
    border: 0;
}
.btn-danger {
    display: inline-block;
    padding: 0.75em 1em;
    line-height: 1;
    background: #dd0000;
    color: white;
    font-weight: bold;
    border-radius: 7px;
    font-size: 14px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    letter-spacing: .05em;
    transition: .25s ease all;
    max-width: 100%;
    text-decoration: none;
    border: 0;
}

.toolbar {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.toolbar a.btn-back {
    font-size: 1rem;
    display: flex;
    align-items: center;
    width: 220px;
    height: 20px;
    color: #ffffff;
    text-decoration: none;
}

.toolbar a.btn-back svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.toolbar a.btn-cart {
    color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.toolbar a.btn-cart svg {
    width: 26px;
    height: 26px;
    margin-right: 5px;
}

/* START */

/* .main-container {
    min-height: 100vh;
    min-height: 100svh;
} */

.nopage-wrapper {
    margin-top: 4rem;
    color: #ffffff;
}

.nopage-wrapper a {
    color: #ffffff;
}

.bg-container {
    background-image: var(--bg-image-container);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: right top;
}

.hidden-title {
    visibility: hidden;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    z-index: -10;
}

/* .screen-header {
    max-width: 90%;
    margin: 20px auto;
    color: #ffffff;
} */

.app-logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.main-logo {
    display: inline-block;
    width: 100px;
    height: 80px;
    background-image: url('../img/gsm-logo.webp');
    background-repeat: no-repeat;
    background-size: contain;
}

.text-logo {
    width: calc(100% - 100px)
    font-size: 35px;
}

.app-header {
    margin-top: 20px;
    position: relative;
    z-index: 100;
}

.app-header .app-time {
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
}

.app-header .app-date {
    font-size: 19px;
    font-weight: 200;
    letter-spacing: 1px;
}

/* .screen-header .app-time {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
} */

#xo-slider-53 img {
    width: auto;
    height: 100svh;
    max-height: 100svh;
}

.homeslideshow-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.homeslideshow-wrapper .swiper-slide img {
    height: 100svh;
    width: 100vw;
    object-fit: cover;
}

.certificates-slide-wrapper {
    margin-top: 20px;
}

.certificates-slide-wrapper .swiper-slide {
    text-align: center;
}

.certificates-slide-wrapper .swiper-slide img {
    width: auto;
    max-width: 80svw;
    max-height: 80svh;
}

/* NAV ICON */

.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* gap: 7.1%; */
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 100;
}

.main-wrapper .nav-icon-wrapper {
    width: 20%;
    margin-bottom: 50px;
    animation: zoomOut .7s ease-in-out;
}

.main-wrapper .icon-wrapper {
    margin: 0 auto 10px auto;
    width: 100px;
    height: 100px;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
}

@keyframes zoomOut {
    0% {
        opacity: 0;
        transform: scale(2);
    }
    20% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.main-wrapper h3 {
    color: white;
    display: block;
    text-align: center;
    min-width: 100px;
    max-width: 100%;
    margin-inline: auto;
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    text-shadow: 0 0 3px #333333;
}

.main-wrapper a {
    text-decoration: none;
    color: #ffffff;
}

.main-wrapper .nav-icon-wrapper#icon-buy .icon-wrapper {
    background-image: url( '../img/icons/cart.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-1 .icon-wrapper {
    background-image: url( '../img/icons/gsm-icon.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-3 .icon-wrapper {
    background-image: url( '../img/icons/bell.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-4 .icon-wrapper {
    background-image: url( '../img/icons/bo-105.svg' );
}
/* .main-wrapper .nav-icon-wrapper#icon-5 .icon-wrapper {
    background-image: url( '../img/icons/bell.svg' );
} */
.main-wrapper .nav-icon-wrapper#icon-5 .icon-wrapper {
    background-image: url( '../img/icons/casa_icon.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-6 .icon-wrapper {
    background-image: url( '../img/icons/settings.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-7 .icon-wrapper {
    background-image: url( '../img/icons/propeller.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-8 .icon-wrapper {
    background-image: url( '../img/icons/iera.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-9 .icon-wrapper {
    background-image: url( '../img/icons/ndt.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-10 .icon-wrapper {
    background-image: url( '../img/icons/painting.svg' );
}
.main-wrapper .nav-icon-wrapper#icon-11 .icon-wrapper {
    background-image: url( '../img/icons/generator.svg' );
}
.main-wrapper .nav-icon-wrapper {
    transition: all 0.1s ease-in-out;
}
.main-wrapper .nav-icon-wrapper:hover {
    transform: scale(1.2);
}

.main-docker {
    display: flex;
    flex-wrap: nowrap;
    gap: 3%;
    justify-content: space-around;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    left: 50%;
    width: auto;
    translate: -50% 0;
    background-color: rgba(166, 166, 166, 0.3);
    border-radius: 20px;
    padding: 15px 2%;
    max-width: 90%;
    backdrop-filter: blur(5px);
}

.main-docker .nav-icon-wrapper#icon-1 .icon-wrapper {
    background-image: url( '../img/icons/Home.svg' );
}
.main-docker .nav-icon-wrapper#icon-2 .icon-wrapper {
    background-image: url( '../img/icons/certificates.svg' );
}
.main-docker .nav-icon-wrapper#icon-3 .icon-wrapper {
    background-image: url( '../img/icons/contactus.svg' );
}
.main-docker .nav-icon-wrapper#icon-4 .icon-wrapper {
    background-image: url( '../img/icons/wa.svg' );
}

.main-docker h3 {
    color: white;
    text-align: center;
    width: 120px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
}
.main-docker .nav-icon-wrapper a {
    text-decoration: none;
    color: white;
}

.main-docker .nav-icon-wrapper {
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.main-docker .nav-icon-wrapper:hover {
    transform: translateY(-15%);
}

.main-docker .icon-wrapper {
    margin: 0 auto 7px auto;
    width: 70px;
    height: 70px;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
}

.search-caps-wrapper {
    width: 100%;
}
#page-default {
    background-color: #ffffff;
    padding: 30px;
    width: min(90%, 1124px);
    border-radius: 30px;
}

#page-default p {
    font-weight: 200;
    line-height: 1.6;
}
#page-default a {
    color: #000000;
}

#page-products {
    margin-top: 30px;
}
.search-caps {
    background-color: rgba(255, 255, 255, 0.3);
    height: 40px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    display: flex;
    padding-right: 20px;
    align-items: center;
}
.search-products {
    background-color: rgba(255, 255, 255, 0.3);
    height: 40px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    display: flex;
    padding-right: 20px;
    align-items: center;
}
.search-caps input,
.search-products input {
    width: 100%;
    padding: 10px 25px;
    font-size: 18px;
    color: #ffffff;
    background: transparent;
    border: 0;
    outline: none;
}
.search-caps input::placeholder,
.search-products input::placeholder {
    color: #cccccc;
}

.btn-search {
    color: #ffffff;
    background: none;
    border: none;
    width: 22px;
    height: 22px;
}

.product-list {
    margin-top: 20px;
}

.product-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 0 20px 0;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    overflow: hidden;
}

.product-list .product-item {
    padding-right: 20px;
}

.product-list .product-image {
    width: 150px;
    margin-right: 10px;
}

.image-product {
    max-width: 100%;
    display: flex;
}

.product-list .product-info {
    width: calc( 100% - 350px );
}

.product-list .product-title {
    margin-top: 0;
}

.product-info .product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info .product-desc {
    font-size: 1rem;
}

/* Product Detail */

.product-detail .product-image {
    width: 30%;
    margin-right: 10px;
}

.product-detail .product-info {
    width: calc( 70% - 10px );
}

.bg-white {
    background-color: #ffffff;
    padding: 10px 30px;
    border-radius: 20px;
}

#page-cart h1 {
    margin-block: 6px;
}

#page-cart .bg-white:has(p) {
    padding-bottom: 25px;
}

.cart-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cart-wrapper .cart-customer {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    margin-right: 20px;
    width: calc( 50% - 20px );
}

.cart-wrapper .cart-customer h3 {
    margin-top: 0;
}

.form-wrapper .input-group {
    margin-bottom: 15px;
}
.form-wrapper .input-group > * {
    display: block;
}

.form-wrapper .input-group > label {
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 7px;
}

.form-wrapper .input-group > input,
.form-wrapper .input-group > textarea {
    border: 1px solid #aaaaaa;
    font-size: 17px;
    padding: 8px 10px;
    border-radius: 5px;
    width: 90%;
    box-sizing: border-box;
}

.cart-wrapper .cart-items {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    width: 50%;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cccccc;
}

.cart-item h3 {
    margin: 0 0 5px 0;
}
.cart-info {
    width: calc( 100% - 200px );
}
.cart-qty {
    width: 100px;
}
.cart-delete {
    width: 50px;
    text-align: right;
}
.cart-delete label {
    display: block;
}
.cart-qty > * {
    display: block;
}
.cart-qty label {
    font-size: 14px;
    color: #777777;
    margin-bottom: 5px;
    font-weight: 500;
}
.cart-qty input {
    width: 70px;
    padding: 5px 10px;
    border: 1px solid #cccccc;
    font-size: 16px;
}

.contact-form-wrapper .input-group input,
.contact-form-wrapper .input-group textarea {
    width: 100%;
}

.row {
    display: flex;
    gap: 4%;
}

.row .col-6 {
    width: 46%;
}
.py-3 {
    padding-block: 30px;
}
.px-5 {
    padding-inline: 50px;
}
.page-title-orange {
    color: var(--color-orange);
    font-size: 30px;
    font-weight: 200;
}

.title-bleft {
    font-weight: 700;
    font-size: 1rem;
    border-left: 5px solid var(--color-orange);
    padding-left: 10px;
}

.lg-title-bleft {
    font-weight: 700;
    font-size: 1.4rem;
    border-left: 5px solid var(--color-orange);
    padding-left: 10px;
}

.desc-bleft {
    border-left: 5px solid var(--color-orange);
    padding-left: 10px;
    margin-top: 30px;
}

.bg-grey-light {
    background-color: #FDFBF9;
}

.box-service {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    height: 100px;
    border-radius: 10px;
    margin-left: 30px;
    margin-bottom: 20px;
    padding-left: 60px;
    padding-right: 30px;
    font-weight: 600;
    position: relative;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.box-service:before {
    content: '';
    display: block;
    background-color: var(--color-orange);
    width: 70px;
    height: 70px;
    position: absolute;
    left: -30px;
    top: 15px;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.box-service#cog:before {
    background-image: url('../img/about/cog.png');
}
.box-service#paint:before {
    background-image: url('../img/about/paint.png');
}
.box-service#airplane:before {
    background-image: url('../img/about/airplane.png');
}
.box-service#avionic:before {
    background-image: url('../img/about/avionic.png');
}
.box-service#hst:before {
    background-image: url('../img/about/hst.png');
}
.box-service#propeller:before {
    background-image: url('../img/about/propeller.png');
}
.box-service#airframe:before {
    background-image: url('../img/about/airframe.png');
}

/* RESPONSIVE */

@media only screen and (max-width: 1120px) {
    .main-docker {
        padding: 15px 4%;
    }
}

@media only screen and (max-width: 820px) {
    .row {
        display: block;
    }
    .row .col-6 {
        width: 100%;
    }
    .py-3 {
        padding-block: 15px;
    }
    .px-5 {
        padding-inline: 30px;
    }
    #page-default h1 {
        font-size: 1.5rem;
        text-align: center;
        margin-top: 0;
        padding-top: 0;
    }
    .product-list .product-item {
        flex-wrap: wrap;
        padding-right: 0;
    }
    
    .product-list .product-image {
        width: 120px;
    }
    .product-list .product-info {
        width: calc( 100% - 130px );
    }

    .product-list .product-action {
        width: 95%;
    }
    .product-list .product-action a {
        display: block;
        text-align: center;
        margin-block: 10px;
    }
    .product-item {
        display: block;
        padding: 20px;
    }
    .product-detail .product-image,
    .product-detail .product-info {
        width: 100%;
        margin: 0 0 10px 0;
    }
    .product-detail .product-image {
        text-align: center;
    }
    .product-detail .product-image img {
        width: 50%;
        margin-inline: auto;
    }
    .product-action,
    .product-item .btn-primary,
    .product-item .btn-secondary {
        width: 100%;
        margin-bottom: 5px;
    }
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    .main-docker .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .main-docker {
        gap: 5%;
    }
    .main-wrapper h3,
    .main-docker h3 {
        width: 70px;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px;
    }
    #xo-slider-53 img {
        width: 100%;
        height: auto;
        max-width: 100svh;
    }
    .cart-wrapper {
        flex-wrap: wrap;
    }
    .cart-wrapper .cart-customer,
    .cart-wrapper .cart-items {
        width: 100%;
        max-width: 100%;
        margin: 0 0 10px 0;
    }

    .cart-wrapper .cart-customer {
        order: 2;
    }

    .form-wrapper .input-group > input,
    .form-wrapper .input-group > textarea {
        width: 100%;
    }
    .cart-wrapper .btn-checkout {
        display: block;
        width: 100%;
    }
    #page-contact h1 {
        text-align: center;
    }
    .contact-info {
        display: block;
    }

    .contact-info .contact-info__item {
        width: 100%;
        border-bottom: 1px solid #cccccc;
    }
}

@media only screen and (max-width: 620px) {
    .desktop-view {
        display: none !important;
    }
    .app-logo {
        position: relative;
        margin-top: 10px;
    }
    .main-logo {
        position: absolute;
        top: -5px;
        left: -35px;
        width: 70px;
        height: 40px;
    }
    
    .text-logo {
        font-size: 16px;
    }
    
    .app-header .app-time {
        font-size: 35px;
    }
    
    .app-header .app-date {
        font-size: 11px;
    }
    .main-wrapper .nav-icon-wrapper {
        width: 25%;
        margin-bottom: 30px;
    }
    .main-wrapper .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .main-docker .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .main-docker {
        padding: 15px 8%;
        gap: 6%;
    }
    .main-wrapper h3,
    .main-docker h3 {
        width: 60px;
        font-weight: 500;
        font-size: 12px;
    }
}
@media only screen and (min-width: 620px) and (max-width: 930px) {
    .app-logo {
        position: relative;
        margin-top: 10px;
    }
    .main-logo {
        position: absolute;
        top: 0px;
        left: -55px;
        width: 110px;
        height: 70px;
    }
    .text-logo {
        font-size: 26px;
    }
}

@media only screen and (max-width: 420px) {
    .app-logo {
        position: relative;
        margin-top: 10px;
    }
    .main-logo {
        position: absolute;
        top: -5px;
        left: -35px;
        width: 70px;
        height: 40px;
    }
    
    .text-logo {
        font-size: 16px;
    }
    
    .app-header .app-time {
        font-size: 40px;
        letter-spacing: 0;
    }
    
    .app-header .app-date {
        font-size: 14px;
        letter-spacing: 0;
    }
}

@media only screen and (max-width: 361px) {
    .app-header .app-time {
        font-size: 30px;
        letter-spacing: 0;
    }
    
    .app-header .app-date {
        font-size: 10px;
        letter-spacing: 0;
    }
}