@font-face {
    font-family: RadioCanada;
    src: url(assets/fonts/RadioCanadaBig-VariableFont_wght.ttf);
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-3 label{
    width: unset !important;
}

input[type=text] {
    width: 450px;
}

input[type=mail] {
    width: 450px;
}

input[type=password] {
    width: 450px;
}

.login-card input[type=text],
.login-card input[type=mail],
.login-card input[type=password],
.login-card input[type=email] {
    width: 100%;
    max-width: 100%;
}

.form-check .form-check-input {
    float: unset;
}

.form-group input[type=text] {
    width: 100%;
}

.no-width {
    width: 100% !important;
}

button {
    margin: 10px 0px;
}

label {
    width: 440px;
}

.form-check {
    margin: 10px 0px;
    font-size: 12px;
}

.perspective-hover {
    transition: 1s;
}

.perspective-hover:hover {
    transform: perspective(40px) rotateY(-1deg);
}

.perspective {
    transform: perspective(40px) rotateY(-1deg);
}

body {
    background-color: var(--bs-dark);
    color: var(--bs-light);
    font-family: RadioCanada;
}

/* Auth pages */
body.auth-page {
    background: radial-gradient(1000px circle at 10% 10%, #1d1f2b 0%, #0f1017 55%, #0b0c12 100%);
    color: #f5f6fb;
    min-height: 100vh;
}

.auth-page .login-card {
    background: rgba(18, 20, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.auth-page .form-control,
.auth-page .form-control:focus {
    background-color: #0e111a;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5f6fb;
}

.auth-page .form-control::placeholder {
    color: rgba(245, 246, 251, 0.55);
}

/* Dashboard layout */
body.dashboard-page {
    background: #0f1118;
    color: #d6d8e1;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.dashboard-sidebar {
    background: #11131c;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 20px;
}

.dashboard-content {
    padding: 32px 36px 60px;
}

.brand-placeholder {
    height: 48px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.nav-pills .nav-link {
    color: rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
    background: rgba(13, 110, 253, 0.16);
    color: #ffffff;
}

.topbar {
    background: #151925;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.content-card {
    background: #141722;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
}

@media (max-width: 992px) {
    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* Dashboard (ucp) styling */
.dashboard-content .card,
.dashboard-content .card-body,
.dashboard-content .card-header {
    background: #141722;
    color: #d6d8e1;
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-content .card-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.dashboard-content .table {
    color: #d6d8e1;
}

.dashboard-content .table thead th {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}

.dashboard-content .table td,
.dashboard-content .table th {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.dashboard-content .form-control,
.dashboard-content .form-select,
.dashboard-content .input-group-text,
.dashboard-content textarea {
    background-color: #0e111a;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5f6fb;
}

.dashboard-content .form-control::placeholder {
    color: rgba(245, 246, 251, 0.55);
}

.dashboard-content .input-group-text {
    color: rgba(245, 246, 251, 0.7);
}

.dashboard-content .alert {
    border-color: rgba(255, 255, 255, 0.12);
}

.dashboard-content .alert-success {
    background: rgba(25, 135, 84, 0.2);
    color: #c8f4dd;
}

.dashboard-content .alert-danger {
    background: rgba(220, 53, 69, 0.18);
    color: #f4c1c7;
}

.dashboard-content .badge {
    font-weight: 600;
}

.dashboard-content .list-entry {
    background-color: #10141f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #d6d8e1;
}

.dashboard-content .group-box .title {
    color: rgba(255, 255, 255, 0.65);
}

/* Dashboard modals */
.dashboard-page .modal-content {
    background: #141722;
    color: #d6d8e1;
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-page .modal-header {
    background: #11131c;
    color: #d6d8e1;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.dashboard-page .modal-body {
    background: #141722;
    color: #d6d8e1;
}

.dashboard-page .modal-footer {
    background: #11131c;
    border-top-color: rgba(255, 255, 255, 0.08);
}

.dashboard-page .modal-body .form-control,
.dashboard-page .modal-body .form-select {
    background-color: #0e111a;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5f6fb;
}

.dashboard-page .modal-body .form-control::placeholder {
    color: rgba(245, 246, 251, 0.55);
}

.dashboard-page .close {
    color: rgba(245, 246, 251, 0.8);
    opacity: 1;
}

.dashboard-page .close:hover {
    color: #ffffff;
    opacity: 1;
}

.text-highlite {
    color: var(--bs-primary);
    font-weight: bold;
}

.center-box {
    /* position: absolute; */
    /* left: 50%; */
    /* top: 50%; */
    /* transform: translate(-50%, -50%); */
    color: var(--bs-dark) !important;
    background: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 999;
    color: white;
    max-width: 480px;
}

.pos-relative {
    position: relative;
}

.highlited-badge {
    position: absolute;
    right: 0px;
    bottom: 0px;
    transform: translate(40%, 40%);
}

.teaser-area {
    color: white;
    width: 80%;
    padding: 0px 0px 30px 0px;
    font-size: 14px;
}

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

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

.head {
    display: grid;
    grid-template-columns: 300px auto;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-items: center;
    padding: 0px 50px;
}

.logo {
    width: 250px;
    margin: 30px 0px;
}

.logo-placeholder {
    width: 250px;
    height: 80px;
    margin: 30px 0px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
}

.nav-area {
    display: flex;
    align-items: center;
    justify-items: end;
    text-align: right;
    padding: 0px 50px;
    justify-content: end;
}

.nav-area ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.nav-area li {
    display: inline-block;
    margin: 0px 10px;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 12px;
    position: relative;
    transition: 0.5s;
    padding: 15px 0px;
    cursor: pointer;
}

.nav-area li:hover {
    color: #0d6efd;
}

.nav-area li:hover ul {
    display: inherit;
}

.nav-area ul li ul {
    position: absolute;
    left: 0px;
    top: 40px;
    background-color: #212529;
    color: #eee;
    width: 155px;
    text-align: left;
    margin: 0px;
    padding: 0px;
    z-index: 99;
    border: solid 1px #1e1e1e;
    display: none;
}

.nav-area ul li ul li {
    padding: 15px 5px;
}

.nav-area a {
    color: white;
    text-decoration: none;
    transition: 1s;
}

.nav-area a:hover {
    color: #0d6efd;
}

.main-content {
    display: grid;
    grid-template-columns: 300px auto;
    width: 1400px;
    margin: auto;
}

.sidebar a {
    color: inherit;
    text-decoration: none;
}

.sidebar a:hover {
    color: #0d6efd;
}

.sidebar ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    border: solid thin var(--bs-black);
    overflow: hidden;
    background: var(--bs-body-color);
    color: var(--bs-gray-100) !important;
}

.sidebar ul li {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 5px;
}

.main {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    padding: 50px 0px;
    min-height: 650px;
    /* background-image: url("images/background.webp");
    background-size: cover;
    background-repeat: no-repeat; */
    position: relative;
}

.main input[type=text] {
    width: 100%;
}

.bg-light {
    background-image: none;
}

.content {
    padding: 0px 30px;
}

.columns-3 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.columns-4 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.columns-5 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    align-items: center;
    justify-items: stretch;
    align-content: center;
}

.columns-5 input[type=text] {
    width: unset;
}

.option-icon {
    cursor: pointer;
}

.option-icon:hover {
    color: #0d6efd;
}

.foot-nav {
    text-align: center;
    padding: 30px 0px;
    font-size: 10px;
}

.foot-nav ul {
    padding: 0px;
    width: 1200px;
    margin: auto;
    list-style: none;
}

.foot-nav li {
    display: inline-block;
    margin: 0px 5px;
}

.foot-nav a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}

.foot-nav a:hover {
    color: #0d6efd;
}


.options {
    color: #0d6efd;
    text-align: center;
}

#qrdl {
    margin: 10px 0px;
}

.small {
    width: 450px;
}

.voucher-options {
    padding: 15px 0px;
}

.voucher-options ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.prices {
    text-align: center;
    padding: 15px 0px;
}

.prices h3 {
    text-align: left;
}

.price-image {
    margin: 30px 0px;
    width: 100%;
}

.width-600 {
    width: 600px;
}

.container {
    /* margin-top:100px; */
    margin: auto;
}

.counter-section {
    padding: 15px 0px;
    background-color: var(--bs-primary);
}

.counter-box {
    display: block;
    background: var(--bs-gray-800);
    padding: 40px 20px 37px;
    text-align: center;
    transition: 0.5s;
    border-radius: 15px;
}

.counter-box:hover {
    background-color: #fff;
    color: #0d6efd;
}

.counter-box:hover p {
    color: #0d6efd;
}

.counter-box:hover i {
    color: #0d6efd;
}

.counter-box:hover .counter {
    color: #0d6efd;
}


.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #909090;
    font-size: 18px;
    font-weight: 500
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored {
    background: #3acf87;
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff
}

.counter-area {
    transform: scale(0.7);
    /* margin-top: -200px; */
}

.single-page-content {
    width: 1200px;
    color: rgb(20, 20, 20);
    margin: auto;
    padding: 30px 0px;
}

.mb30 {
    margin-bottom: 30px;
}

.no-padding {
    padding: 0px;
}

.no-background {
    background-color: unset;
}

.width600 {
    width: 800px;
}

.dark {
    color: white;
    background-color: #212529;
}

.dark h5 {
    color: white;
}

.list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.list-entry {
    background-color: #f8f8f8;
    border-left: unset;
    display: grid;
    padding: 5px;
    border-radius: 5px;
}

.link-list-item {
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
}

.link-list-item-2 {
    grid-template-columns: 1fr 2fr 1fr 1fr;
}

.list-entry-field {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.flex-left {
    justify-content: start;
}

.flex-direction-row {
    flex-direction: row;
}

.flex-gap-15 {
    gap: 15px;
}

.group-box {
    display: flex;
    align-items: self-start;
    justify-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    font-size: 14px;
    padding: 15px;
}

.group-box .title {
    font-weight: bold;
    text-transform: uppercase;
}

.font-10 {
    font-size: 10px;
}

.big-icon {
    font-size: 36px;
}

.list-entry-field ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.list-entry-field li {
    color: inherit;
    cursor: pointer;
}

.list-entry-field li:hover {
    color: #0d6efd;
}

.list-entry-field a {
    color: inherit;
    text-decoration: none;
}

.pricing {
    background-color: white;
    background-color: white;
    padding: 50px 0px;
    color: black;
}

.content {
    width: 1200px;
    margin: auto;
}

.product {
    border: solid 1px var(--bs-dark);
    border-radius: 15px;
    display: grid;
    grid-template-rows: 75px 130px auto 75px;
    color: var(--bs-dark);
}

.product-title {
    border-bottom: solid 1px var(--bs-gray-600);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    text-transform: uppercase;
}

.product-title h3 {
    text-align: center;
    margin: 0px;
    font-size: 17px;
}

.product .description {
    text-align: center;
    padding: 15px;
    min-height: 150px;
    display: flex;
    align-items: start;
    justify-items: center;
    align-content: center;
    justify-content: center;
}

.product .features {
    padding: 15px;
    /* border-bottom: solid 3px #212529; */
    min-height: 180px;
    display: flex;
    align-items: start;
    justify-items: center;
    align-content: center;
    justify-content: center;
    border-bottom: solid 1px var(--bs-gray-600);
}

.product .features ul {
    list-style: square;
    margin: 0px;
    padding: 0px;
    list-style-image: url("images/check.png");
    line-height: 24px;
}

.product .button {
    padding: 15px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product .button div {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
}

.price {
    font-weight: bold;
}

.grid {
    display: grid;
    gap: 15px;
}

.row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.notification {
    padding: 15px;
    border-radius: 5px;
    background-color: #eee;
    margin: 2px 0px;
}

.notification .meta {
    text-align: right;
    font-size: 12px;
    color: #909090;
}

.shared-widht {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about {
    padding: 50px 0px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
}

.about-me-image {
    /* width: 100%; */
    max-height: 550px;
}

.about-text {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: space-around;
    flex-direction: column;
    padding: 15px;
    background: var(--bs-border-color-translucent);
    border-radius: 15px;
}

.pagination {
    padding: 15px 0px;
}

.pagination .page-list {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    border: #909090 solid 1px;
    border-radius: 5px;
}

.pagination .page-list .page-number {
    display: inline-block;
    padding: 5px 10px;
    border-right: #909090 solid 1px;
}

.no-border {
    border: none !important;
}

.current-page {
    background-color: #0d6efd;
    color: white;
}

.extensions {
    padding: 50px 0px;
    text-align: center;
    display: flex;
}

.extensions h3 {
    color: #0d6efd;
}

.extensions .center-text {
    padding: 15px 0px;
}

.download-area {
    padding: 30px 0px 0px 0px;
}

.faq {
    padding: 50px 0px;
    background-color: white;
}

.faq h3 {
    color: #0d6efd;
    font-size: 26px;
}

.faq .text-content {
    color: #212529;
    padding: 15px 0px;
}

.accordion-button {
    font-weight: bold;
    margin: 0px;
}

.form-body form {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
}

.form-body .index-submit-btn {
    margin: 0px;
    height: 3em;
}

.form-body .index-url-field {
    height: 3em;
}

.main .overlay {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.8);
}

.table-avatar-small {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 15px 0px;
}

.linktree-preview {
    width: 100%;
    height: 1000px;
}

.linktree-element-list {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.linktree-element {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 5px;
    border: solid thin #eee;
    border-radius: 5px;
}

.linktree-element-field h5 {
    margin: 0px;
    font-size: 16px;
}

.linktree-element-field .value {
    font-size: 14px;
}

.linktree-element-field {
    display: flex;
    align-items: start;
    justify-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
    overflow: hidden;
    padding: 5px;
}

.linktree-element-options {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    gap: 15px;
}

.tag {
    padding: 2px 10px;
    border-radius: 14px;
    margin: 0px 5px 0px 0px;
    font-weight: bold;
}

.green {
    background-color: #3acf87;
    color: #ffffff;
}

.mobile-nav {
    display: none;
}

.mobile-nav-area ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.mobile-nav-area li {
    padding: 15px;
    border-bottom: solid thin #1e1e1e;
    border-top: solid 1px #1e1e1e;
    border-collapse: collapse;
    background-color: #39444e;
}

.mobile-nav-area a {
    color: inherit;
    text-decoration: none;
}

.toggle-button {
    font-size: 30px;
    padding: 5px 15px;
    /* background-color: #1e1e1e; */
    border-bottom: solid thin #1e1e1e;
    border-top: solid 1px #1e1e1e;
}

.no-max-width {
    max-width: unset;
}

.partners {
    background-color: var(--bs-primary);
    padding: 30px;
}

.partner-grid {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-grid img {
    height: 120px;
}

.fixed-table {
    overflow-y: auto;
    height: 400px;
}

.fixed-table thead th {
    position: sticky;
    top: 0px;
    background-color: var(--bs-light);
    color: var(--bs-dark);
    padding: 10px 10px;
}

.edit-action-btn {
    /* padding: unset; */
    margin: 0px 5px;
}

.social-login {
    padding: 5px;
    background-color: var(--bs-light);
}

.social-login h5 {
    font-size: 14px;
}

.twitch-avatar {
    height: 32px;
    width: 32px;
    border-radius: 50%;
}

.bit-icon {
    height: 24px;
}

.chart-viewer {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    overflow: auto;
}

.discord-box {
    background-color: #7289da;
    color: white;
    border: solid thin #405dc9;
    border-radius: 6px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 200px;
    margin: 15px 0px;
    font-weight: bold;
    vertical-align: middle;
}

.discord-box .box-content {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    overflow: auto;
}

.discord-box .box-content p {
    margin: 0px;
}

.discord-box .action-btn {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
}

.modal-body input {
    width: 100%;
}

.flex {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: start;
    gap: 5px;

}

.icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: .75rem;
}

.feature-card h2 {
    font-size: 26px;
}

#testimonialSlider .carousel-inner {
    padding: 5% 15%;
}

.flex-mid {
    display: flex;
    align-items: center;
    justify-items: center;
    align-items: stretch;
    justify-content: start;
    flex-direction: row;
    flex-wrap: wrap;
}

.flex-mid-2 {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: start;
    flex-wrap: wrap;
}

.feature-icon-small {
    width: 3rem;
    height: 3rem;
}

.testimonials {
    position: relative;
}

.testimonials h4 {
    margin: 0px;
}

.testimonials p {
    margin: 0px;
}

.testimonial-text {
    font-style: italic;
}

.testimonial-text::before {
    content: "\F6B0";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 32px;
}

/* .testimonial-text::after {
    content: "\F6B0";
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 0px;
    bottom: -32px;
    font-size: 32px;
} */

.footer {
    padding: 50px 0px 0px 0px;
}

.footer a {
    color: var(--bs-gray-600);
    text-decoration: none;
    transition: 0.5s;
}

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

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

.footer .inner {
    width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
}

.footline {
    font-size: 12px;
    text-align: center;
    color: var(--bs-gray-600);
    padding: 50px 0px;
}

.footer-cell {
    display: flex;
    align-items: self-start;
    justify-items: center;
    align-content: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: column;
}

.footer-cell p {
    margin: 0px;
}

.footer .logo {
    margin: 0px;
    height: auto;
    width: 70%;
}

.footer .social-navigation ul{
    display: flex;
    align-items: start;
    justify-items: center;
    align-content: center;
    justify-content: start;
    flex-wrap: wrap;
    font-size: 18px;
    gap: 5px;
}

.footer .social-navigation ul a{
    font-size: 18px;
}

.customer-logo {
    height: 220px;
}

.small-note {
    font-size: 12px;
}

.borderless table {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: none;
}

.borderless tr {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: none;
}

.borderless td {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: none;
}

.borderless th {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-bottom-style: none;
}

@media only screen and (max-width: 768px) {

    input[type=mail] {
        width: 100%;
    }

    input[type=password] {
        width: 100%;
    }

    .mobile-100 {
        width: 100%;
    }

    .mobile-nav {
        display: inherit;
    }

    .nav-area {
        display: none;
    }

    .head {
        display: grid;
        grid-template-columns: 1fr;
    }

    .logo {
        width: 100%;
        margin: 50px 0px;
    }

    .teaser-area {
        width: 100%;
        font-size: 15px;
    }

    /* .nav-area {
        display: flex;
        align-items: center;
        justify-items: center;
        text-align: center;
        padding: 20px 0px;
        justify-content: center;
    } */

    .width600 {
        width: unset;
    }

    .row {
        gap: 20px;
    }

    .content {
        width: unset;
        margin: auto;
        padding: 15px;
    }

    .row-3 {
        grid-template-columns: 1fr;
    }

    label {
        width: unset;
    }

    .foot-nav ul {
        width: unset;
    }

    .main {
        padding: 20px 15px;
        min-height: 420px;
    }

    .nav-area li {
        display: block;
        margin: 10px 0px;
    }

    .nav-area li a {
        width: 100%;
    }

    .main-content {
        grid-template-columns: 1fr;
        width: unset;
    }

    input[type=text] {
        width: unset;
    }

    .link-list-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .list-entry-field {
        text-align: center;
    }

    .shared-widht {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 15px;
        text-align: center;
    }

    .about-me-image {
        width: 100%;
        max-height: unset;
    }

    .pricing .grid {
        padding: 0px !important;
    }

    .footer .inner {
        width: unset;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .footer-cell {
        display: flex;
        align-items: center;
        justify-items: center;
        align-content: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .highlited-badge {
        position: unset;
        right: 0px;
        bottom: 0px;
        transform: unset;
        text-align: center;
        padding: 30px 0px;
    }

    .counter-section .row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .partner-grid img {
        height: unset;
        max-width: 100%;
    }
}