@import 'https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap';*::-moz-selection {
    background: #18a29d61;
    color: #000
}

div[style="margin:0 0 10px 0;padding:10px 35px;background-color:#ffffd2;color:#555;font-size:16px;text-align:center;"] {
    display: none;
}

*::selection {
    background: #18a29d61;
    color: #000
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #242424
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom,#19aba6 10%,#158f8a 100%)
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative
}

body {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    font-family: montserrat,sans-serif;
    -webkit-font-smoothing: antialiased;
    vertical-align: baseline;
    padding: 0
}

:root {
    --plox-primary: #47c3bf;
    --plox-secondary: #151515;
    --plox-text: #323232;
}

.plox-topbar-strip {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.078);
    color: #fff;
    font-size: 15px;
}

.plox-topbar-strip .plox-topbar-links {
    align-items: center;
    display: flex;
    gap: 30px;
    height: 50px;
    justify-content: flex-end;
}

.plox-topbar-strip a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0;
    transition: 150ms ease 0s;
    user-select: none;
}

.plox-topbar-strip a:hover {
    color: var(--plox-primary);
}

.plox-topbar-strip i {
    margin-right: 6px;
}

@media screen and (max-width: 900px) {
    .plox-topbar-strip .plox-topbar-links {
        gap: 16px;
    }

    .plox-topbar-strip span {
        display: none;
    }
}

.plox-header {
    background: var(--plox-secondary);
}

.plox-main-nav {
    background: #080a0a;
    padding: 24px 0;
}

.plox-nav-inner {
    align-items: center;
    display: flex;
    gap: 30px;
}

.plox-logo {
    align-items: center;
    display: flex;
}

.plox-logo img {
    height: 32px !important;
    width: auto !important;
    max-height: 32px !important;
    object-fit: contain;
    display: block;
}

.plox-nav-toggle {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.plox-main-nav .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-basis: auto;
}

.plox-nav-list {
    align-items: center;
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row !important;
}

.plox-main-nav .navbar-nav {
    flex-direction: row !important;
}

.plox-nav-item {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
}

.plox-nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 150ms ease 0s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.plox-nav-link:hover,
.plox-nav-item:hover > .plox-nav-link {
    color: var(--plox-primary);
}

.plox-nav-link.has-dropdown::after {
    content: "▾";
    display: inline-block;
    font-size: 12px;
    margin-left: 6px;
    opacity: 0.8;
}

.plox-dropdown {
    background: #fff;
    border-bottom: 2px solid rgba(0,0,0,0.06);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    min-width: 240px;
    opacity: 0;
    padding: 12px 0;
    position: absolute;
    right: 0;
    top: 32px;
    transform: translateY(6px);
    transition: 120ms ease 0s;
    visibility: hidden;
    z-index: 50;
    pointer-events: none;
}

.plox-dropdown-link,
.plox-nav-link {
    text-decoration: none;
}

.plox-nav-list .badge {
    background: var(--plox-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    text-transform: uppercase;
}

.plox-nav-item:hover > .plox-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.plox-dropdown-link {
    color: var(--plox-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    transition: 120ms ease 0s;
    white-space: nowrap;
}

.plox-dropdown-link:hover {
    background: var(--plox-primary);
    color: #fff;
}

.plox-dropdown-divider {
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 6px 0;
}

.plox-nav-secondary .navbar-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0;
}

.plox-nav-secondary .navbar-nav,
.plox-nav-secondary.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.plox-nav-secondary .dropdown-menu {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--plox-primary);
}

.plox-nav-secondary .dropdown-item {
    color: var(--plox-secondary);
}

.plox-nav-secondary .dropdown-item:hover {
    background: #f2f6f6;
    color: var(--plox-primary);
}

.plox-clientbar {
    background: #121212;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    padding: 10px 0;
}

.plox-clientbar .btn,
.plox-clientbar .input-group-text {
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .plox-nav-list {
        gap: 18px;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .plox-dropdown {
        right: auto;
        left: 0;
    }
}

@media screen and (max-width: 992px) {
    .plox-main-nav {
        padding: 16px 0;
    }

    .plox-nav-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-top: 18px;
    }

    .plox-nav-item {
        width: 100%;
    }

    .plox-dropdown {
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        display: none;
    }

    .plox-nav-item:hover > .plox-dropdown {
        display: block;
    }
}

.plox-footer-support {
    background: var(--plox-primary);
}

.plox-footer-support-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 26px 0;
    max-width: 1500px;
    width: 60%;
    margin: 0 auto;
}

.plox-footer-support-title {
    color: #fff;
    font-size: 29px;
    font-weight: 600;
    margin: 0;
}

.plox-footer-support-btn {
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
}

.plox-footer {
    background: #f8ffff;
    z-index: 1;
    padding-top: 50px;
}

.plox-footer-main {
    border-left: 2px dashed rgba(0,0,0,0.08);
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding-bottom: 60px;
}

.plox-footer-col {
    display: flex;
    flex-direction: column;
}

.plox-footer-brand {
    padding-right: 32px;
    position: relative;
}

.plox-footer-brand:before {
    border-right: 2px dashed rgba(0,0,0,0.08);
    content: "";
    height: calc(100% + 120px);
    position: absolute;
    right: 0;
    top: -60px;
}

.plox-footer-logo {
    height: 34px;
    width: auto;
}

.plox-footer-desc {
    color: var(--plox-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    margin: 25px 0;
}

.plox-footer-social {
    display: flex;
    gap: 18px;
}

.plox-footer-social a {
    color: var(--plox-secondary);
    font-size: 25px;
    transition: 150ms ease 0s;
}

.plox-footer-social a:hover {
    color: var(--plox-primary);
}

.plox-footer-title {
    color: var(--plox-secondary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.plox-footer-links a {
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 150ms ease 0s;
}

.plox-footer-links a:hover {
    color: var(--plox-primary);
    transform: translateX(4px);
}

.plox-footer-bottom {
    align-items: center;
    border-top: 2px dashed rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 15px 0 30px;
}

.plox-footer-bottom p {
    color: var(--plox-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
}

.plox-footer-bottom-center {
    text-align: center;
}

.plox-footer-bottom-center img {
    height: 42px;
}

.plox-footer-bottom-right {
    text-align: right;
}

@media screen and (max-width: 1100px) {
    .plox-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .plox-footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .plox-footer-brand:before {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .plox-footer-support-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .plox-footer-main {
        border-left: none;
        grid-template-columns: 1fr;
    }

    .plox-footer-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .plox-footer-bottom-right {
        text-align: center;
    }
}

.navbar-in,.header-in,.section-in {
    width: 100%;
    padding-left: 40px;
    height: 100%;
    margin-left: auto;
    max-width: 1500px;
    position: relative;
    z-index: 5;
    padding-right: 40px;
    margin-right: auto
}

a {
    text-decoration: none!important
}

.navbar {
    background: #19aba6;
    border-bottom: 5px solid #158f8a;
    height: 70px;
    z-index: 6;
}

#xn-navbar {
    height: 100%;
    padding: 0
}

#xn-navbar #nav {
    height: 100%
}

.navbar-link {
    color: #fff!important;
    font-weight: 500;
    transition: 150ms ease 0s;
    font-size: 16px!important;
    letter-spacing: .2px;
    height: 100%;
    padding: 0 20px!important;
    display: flex;
    align-items: center;
    justify-content: center
}

.navbar-link:hover {
    background: rgb(0 0 0/9%)
}

#xn-navbar .navbar-nav.ml-auto {
    height: 100%
}

.navbar-icbtn {
    margin: 0!important;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 20px
}

.navbar-icbtn i {
    color: #fff;
    font-size: 15px
}

.navbar-icbtn>a,.navbar-icbtn>button {
    background: #169490;
    width: 50px;
    padding: 0!important;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 150ms ease 0s
}

.navbar-icbtn>a:hover,.navbar-icbtn>button:hover {
    transform: translateX(-5px)
}

.xn-home-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.xn-home-header:before {
    content: "";
    position: absolute;
    background: #212121;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    z-index: -1;
}

.xn-home-header h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0px;
}

.xn-home-header:after {
    content: "";
    position: absolute;
    background: #2f2f2f;
    width: 100%;
    height: 100%;
    top: 0;
    left: -50%;
    z-index: -1;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.xn-home-btns {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    margin: 50px 0;
}

.card-accent-midnight-blue {
    position: relative;
    background: #fff;
    border: 1px solid #eaeaea;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.card-accent-midnight-blue:before {
    content: "";
    background: #19aba6;
    box-shadow: -1px -1px 15px 1px rgb(197 197 197 / 75%);
    border-radius: 5px;
    transform: translate(5px, 5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.section#main-body {
    background: url(/templates/plox-twenty-one/img/particles-left.svg) top 76px left 0px/250px 430px no-repeat,url(/templates/plox-twenty-one/img/particles-right.svg) bottom right 0px/270px 265px no-repeat;
    min-height: 70vh;
}


.dropdown-menu {
    border-bottom: 4px solid #19aba6;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: #eef7f6;
}

.dropdown-item .navbar-link {
    color: #444!important;
    font-size: 15px!important;
}

.dropdown-item > .navbar-link:hover {
    background: transparent!important;
}

#order-standard_cart .cart-body {
    width: 100%!important;
}

.dropdown-item a {
    color: #444!important;
}

.navbar-text a {
    color: #fff;
}


.xn-info-header {
    flex-direction: column;
    align-items: flex-start;
}

.xn-info-header p {
    color: #ececec;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.header-cont {
    width: 53%;
}

.xn-info-header h2 {
    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: 3px 3px #424242;
}

.section-main.xn-is-home {
    background: transparent;
    min-height: auto;
}

.xn-products {
    margin-bottom: 0!important;
    margin-top: 60px!important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    position: relative!important;
}

.xn-product-card:before {
    content: "";
    background: #19aba6;
    box-shadow: -1px -1px 15px 1px rgb(197 197 197 / 75%);
    border-radius: 5px;
    transform: translate(5px, 5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.xn-product-card {
    position: relative;
    border: none!important;
    display: flex;
    flex-direction: column;
    padding: 0!important;
    transition: 150ms ease 0s;
}

.xn-product-card-top {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: #2121210d;
    border-radius: 0.25em 0.25em 0 0;
}

.xn-product-name {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.product-xn-price {
    background: #2f2f2f;
    color: #fff;
    margin-left: auto;
    margin-bottom: 0!important;
    font-size: 12px;
    font-weight: 500;
    padding: 1px 10px;
    border-radius: 110px;
}

.product-desc {
    padding: 20px 30px!important;
    font-size: 14px!important;
    width: 100%!important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-card-btn {
    padding: 10px 30px;
    background: #158f8a;
    color: #fff;
    border-radius: 0 0 .25em .25em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 150ms ease 0s;
}

.product-desc p, .product-desc ul {
    margin: 0!important;
}

.product-card-btn:hover {
    background: #0f736f;
    color: #fff;
}

.xn-product-card:hover {
    transform: translateY(-5px);
}

.xn-product-card:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
}

.domain-promo-box:before {
    content: "";
    background: #19aba6;
    box-shadow: -1px -1px 15px 1px rgb(197 197 197 / 75%);
    border-radius: 5px;
    transform: translate(5px, 5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.domain-list-container-xn {
    margin: 20px 0;
    border: 1px solid #eaeaea;
    box-shadow: 1px 1px 15px 1px rgb(0 0 0 / 10%);
}
