/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /**
     * colors
     */

    --imperial-red_12: hsla(357, 86%, 57%, 0.12);
    --pacific-blue_12: hsla(188, 78%, 41%, 0.12);
    --davys-gray_12: hsla(210, 9%, 31%, 0.12);
    --imperial-red: hsl(357, 86%, 57%);
    --sonic-sliver: hsl(0, 0%, 47%);
    --pacific-blue: hsl(188, 78%, 41%);
    --blue-ryb_12: hsla(220, 100%, 50%, 0.12);
    --space-cadet: hsl(220, 41%, 20%);
    --eerie-black: hsl(214, 10%, 13%);
    --davys-gray: hsl(210, 9%, 31%);
    --emerald_12: hsla(144, 62%, 53%, 0.12);
    --cool-gray: hsl(225, 11%, 59%);
    --cultured: hsl(225, 20%, 96%);
    --blue-ryb: hsl(220, 100%, 50%);
    --black_08: hsla(213, 59%, 30%, 1);
    --black_12: hsla(213, 59%, 30%, 1);
    --coral_12: hsla(15, 100%, 65%, 0.12);
    --sunglow: hsl(44, 100%, 61%);
    --emerald: hsl(144, 62%, 53%);
    --onyx-2: hsl(210, 10%, 23%);
    --coral: hsl(15, 100%, 65%);
    --white: hsl(0, 0%, 100%);
    --onyx: hsl(207, 8%, 21%);

    /*--black_08: hsla(0, 0%, 0%, 0.06);
    --black_12: hsla(0, 0%, 0%, 0.12);*/

    /**
     * typography
     */

    --ff-vietnam: "Be Vietnam Pro", sans-serif;

    --fs-1: 1.563rem;
    --fs-2: 1.5rem;
    --fs-3: 1.25rem;
    --fs-4: 1.078rem;
    --fs-5: 1rem;
    --fs-6: 0.938rem;
    --fs-7: 0.875rem;
    --fs-8: 0.844rem;
    --fs-9: 0.813rem;
    --fs-10: 0.769rem;

    --fw-500: 500;
    --fw-600: 600;

    /**
     * transition
     */

    --transition: 0.25s ease;
    --cubic-out: cubic-bezier(0.45, 0.85, 0.5, 1);
    --cubic-in: cubic-bezier(0.5, 0, 0.50, 0.95);

    /**
     * radius
     */

    --radius-6: 6px;

    /**
     * shadow
     */

    --shadow-1: 0 12px 20px hsla(210, 10%, 23%, 0.07);
    --shadow-2: 0 2px 10px hsla(0, 0%, 0%, 0.04);
    --shadow-3: 0 2px 20px var(--black_08);

}





/*-----------------------------------*\
    #RESET
  \*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a,
img,
span,
data,
time,
input,
button,
span.icon {
    display: block;
}

button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

html {
    font-family: var(--ff-vietnam);
    scroll-behavior: smooth;
}

body {
    padding-block-start: 72px;
    background: var(--cultured);
}

:focus-visible {
    outline: 2px solid var(--onyx);
    outline-offset: 1px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(0, 0%, 70%);
}





/*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/

.container {
    padding-inline: 15px;
}

.icon-box {
    font-variation-settings: 'wght' 300;
}

.icon-box .icon {
    font-size: 22px;
}

.h2,
.h3 {
    color: var(--onyx-2);
    font-weight: var(--fw-600);
}

.h2 {
    font-size: var(--fs-3);
}

.card {
    background: var(--white);
    position: relative;
    padding: 24px;
    border-radius: var(--radius-6);
    box-shadow: var(--shadow-2);
}

.card-menu-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--cool-gray);
    padding: 6px;
    border-radius: var(--radius-6);
}

.card-menu-btn:is(:hover, :focus) {
    background: var(--black_08);
}

.ctx-menu {
    background: var(--white);
    position: absolute;
    top: 55px;
    right: 16px;
    width: 180px;
    padding: 10px 5px;
    box-shadow: var(--shadow-1);
    border-radius: var(--radius-6);
    display: none;
}

.ctx-menu.active {
    display: block;
}

.ctx-menu-btn {
    color: var(--color, var(--sonic-sliver));
    font-size: var(--fs-6);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 8px;
    padding: 5px 25px;
    border-radius: var(--radius-6);
}

.ctx-menu-btn:is(:hover, :focus) {
    color: var(--hover-color, var(--eerie-black));
    background: var(--black_08);
}

.ctx-menu-btn.red {
    --hover-color: var(--imperial-red);
    --color: var(--imperial-red);
}

.divider {
    height: 1px;
    background: var(--bg, var(--black_08));
    margin-block: var(--mb, 8px);
}

.card-divider {
    --bg: var(--black_12);
    --mb: 25px;
}

.section-title-wrapper {
    padding-block: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.section-title {
    color: var(--onyx);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
}

.btnx {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btnx-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btnx-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btnx-warning {
    color: #fff;
    background-color: #ff9900;
    border-color: #ff9900;
}

.btnx-info {
    color: #fff;
    background-color: #085fe1;
    border-color: #085fe1;
}

.btnx-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}


.btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--fs-9);
    font-weight: var(--fw-600);
    padding: 8px 16px;
    border-radius: var(--radius-6);
}

.btn .icon {
    font-size: 16px;
    font-variation-settings: 'wght' 400;
}

.btn-link {
    color: var(--blue-ryb);
}

.btn-link:is(:hover, :focus) {
    background: var(--blue-ryb_12);
}

.btn-primary {
    color: var(--blue-ryb);
    border: 1px solid var(--blue-ryb);
    transition: var(--transition);
}

.btn-primary:is(:hover, :focus) {
    background: var(--blue-ryb);
    color: var(--white);
    box-shadow: 0 10px 10px -8px var(--blue-ryb);
}

.card-badge {
    background: var(--bg, var(--davys-gray_12));
    color: var(--color, var(--davys-gray));
    font-size: var(--fs-10);
    font-weight: var(--fw-600);
    width: max-content;
    padding: 3px 8px;
    border-radius: var(--radius-6);
}

.card-badge.blue {
    --bg: var(--blue-ryb_12);
    --color: var(--blue-ryb);
}

.card-badge.orange {
    --bg: var(--coral_12);
    --color: var(--coral);
}

.card-badge.cyan {
    --bg: var(--pacific-blue_12);
    --color: var(--pacific-blue);
}

.card-badge.red {
    --bg: var(--imperial-red_12);
    --color: var(--imperial-red);
}

.card-badge.green {
    --bg: var(--emerald_12);
    --color: var(--emerald);
}

.card-badge.radius-pill {
    border-radius: 50px;
}





/*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/

.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    padding-block: 20px;
    overflow: hidden;
    transition: 0.3s var(--cubic-in);
    box-shadow: var(--shadow-3);
    z-index: 1;
}

.header.active {
    height: 400px;
    transition: 0.5s var(--cubic-out);
}

.header>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: var(--fs-1);
    font-weight: var(--fw-600);
    color: var(--space-cadet);
}

.menu-toggle-btn .icon {
    font-size: 28px;
}

.navbar {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s var(--cubic-out);
}

.header.active .navbar {
    opacity: 1;
    visibility: visible;
}

.navbar-list {
    padding-inline: 15px;
    margin-bottom: 15px;
}

.navbar-link {
    color: rgb(180, 180, 180);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: var(--radius-6);
}

:is(.navbar-link, .notification, .header-profile):is(:hover, :focus) {
    background: var(--black_08);
}

.navbar-link.active {
    color: white;
}

.user-action-list {
    padding-inline: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.notification {
    color: var(--onyx);
    padding: 8px;
    border-radius: var(--radius-6);
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    padding-right: 15px;
    border-radius: var(--radius-6);
}

.profile-avatar {
    overflow: hidden;
    border-radius: var(--radius-6);
}

.header :is(.profile-title, .profile-subtitle) {
    font-size: var(--fs-9);
}

.header .profile-title {
    color: var(--onyx);
    margin-bottom: 2px;
    font-weight: var(--fw-600);
}

.header .profile-subtitle {
    color: var(--cool-gray);
    font-weight: var(--fw-500);
}





/*-----------------------------------*\
    #HOME
  \*-----------------------------------*/

.article.container {
    padding: 20px 14px;
}

.home {
    display: block;
    gap: 25px;
}

.article-title {
    margin-bottom: 10px;
}

.article-subtitle {
    color: var(--davys-gray);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
    margin-bottom: 25px;
}

.profile-card-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.card-avatar {
    overflow: hidden;
    border-radius: var(--radius-6);
}

.card-title {
    color: var(--onyx);
    font-weight: var(--fw-600);
    margin-bottom: 5px;
}

.card-subtitle {
    color: var(--cool-gray);
    font-size: var(--fs-7);
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.contact-link {
    color: var(--cool-gray);
    font-size: var(--fs-7);
    display: flex;
    align-items: center;
    gap: 5px;
}


.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-title {
    color: var(--onyx-2);
    font-size: var(--fs-8);
    font-weight: var(--fw-500);
}

.progress-data {
    color: var(--davys-gray);
    font-size: var(--fs-6);
}

.progress-bar {
    margin-top: 15px;
    width: 100%;
    height: 6px;
    background: var(--cultured);
    border-radius: var(--radius-6);
    overflow: hidden;
}

.progress {
    width: var(--width, 100%);
    height: 100%;
    background: var(--bg, var(--onyx));
}

.home .card-wrapper {
    display: grid;
    gap: 25px;
}

.home .task-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home .task-card .card-icon.green {
    --background: var(--emerald_12);
    --color: var(--emerald);
}

.home .task-card .card-icon.blue {
    --background: var(--pacific-blue_12);
    --color: var(--pacific-blue);
}

.home .task-card .icon {
    font-size: 28px;
    color: var(--color);
}

.home .task-card .card-icon {
    background: var(--background);
    padding: 10px;
    border-radius: var(--radius-6);
}

.home .task-card .card-data {
    color: var(--onyx-2);
    font-size: var(--fs-3);
    font-weight: var(--fw-600);
    margin-bottom: 5px;
}

.home .task-card .card-text {
    color: var(--cool-gray);
    font-size: var(--fs-6);
}

.revenue-card .card-title {
    margin-bottom: 15px;
}

.card-price {
    color: var(--onyx);
    font-size: var(--fs-2);
    font-weight: var(--fw-600);
    margin-bottom: 12px;
}

.revenue-card .card-text {
    color: var(--cool-gray);
    font-size: var(--fs-6);
}

.revenue-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.revenue-item:first-child {
    margin-bottom: 10px;
}

.revenue-item .icon {
    font-size: 30px;
}

.revenue-item .icon.green {
    color: var(--emerald);
}

.revenue-item .icon.red {
    color: var(--imperial-red);
}

.revenue-item-data {
    color: var(--onyx);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    margin-bottom: 5px;
}

.revenue-item-text {
    color: var(--cool-gray);
    font-size: var(--fs-9);
}





/*-----------------------------------*\
    #PROJECTS
  \*-----------------------------------*/

.project-list {
    display: grid;
    gap: 25px;
}

.project-card .card-date {
    color: var(--cool-gray);
    font-size: var(--fs-9);
    font-weight: var(--fw-500);
    margin-bottom: 20px;
}

.project-card .card-title {
    color: var(--onyx);
    font-size: var(--fs-4);
    margin-bottom: 8px;
}

.project-card .card-title>a {
    color: inherit;
    transition: var(--transition);
}

.project-card .card-title>a:is(:hover, :focus) {
    color: var(--blue-ryb);
}

.project-card .card-badge {
    margin-bottom: 20px;
}

.project-card .card-text {
    color: var(--cool-gray);
    font-size: var(--fs-7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.project-card .card-progress-box {
    margin-bottom: 15px;
}

.project-card .progress-title {
    font-weight: var(--fw-600);
}

.project-card .progress-data {
    color: var(--onyx);
    font-size: var(--fs-9);
    font-weight: var(--fw-600);
}

.project-card .progress-bar {
    margin-top: 10px;
}

.card-avatar-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.card-avatar-item>a {
    border: 2px solid var(--white);
    border-radius: 50%;
    overflow: hidden;
}

.card-avatar-item:not(:first-child) {
    margin-left: -15px;
}





/*-----------------------------------*\
    #TASKS
  \*-----------------------------------*/

.tasks-item:not(:last-child) {
    margin-bottom: 10px;
}

.tasks .task-card {
    display: grid;
    gap: 15px;
}

.tasks .card-input {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.tasks .card-input>input {
    margin-top: 2px;
    accent-color: var(--blue-ryb);
}

.tasks .card-input>input:checked {
    filter: drop-shadow(0 0 2px var(--blue-ryb));
}

.tasks .task-label {
    color: var(--davys-gray);
    font-size: var(--fs-9);
    font-weight: var(--fw-600);
    line-height: 1.5;
}

.tasks .card-meta-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.tasks .meta-box {
    color: var(--davys-gray);
    font-size: var(--fs-9);
    font-weight: var(--fw-600);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tasks .btn-primary {
    margin-block: 25px;
    margin-inline: auto;
}

.tasks .btn-primary .spiner {
    padding: 6px;
    border: 2px solid var(--blue-ryb);
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 0.75s linear infinite;
    display: none;
}

.tasks .btn-primary:is(:hover, :focus) .spiner {
    border-color: var(--white);
    border-top-color: transparent;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.tasks .btn-primary.active .spiner {
    display: block;
}





/*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/

.footer {
    background: var(--white);
    padding-block: 25px;
}

.footer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-link,
.copyright {
    color: var(--davys-gray);
    font-size: var(--fs-6);
    line-height: 1.7;
}

.footer-link,
.copyright-link {
    display: inline-block;
    transition: var(--transition);
}

:is(.footer-link, .copyright-link):is(:hover, :focus) {
    color: var(--blue-ryb);
}

.footer-item:not(:last-child)::after {
    content: "-";
    color: hsl(0, 0%, 80%);
    font-weight: var(--fw-600);
    margin-inline: 5px;
}

.copyright-link {
    color: inherit;
}

.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.popup .main-button {
    background-color: #20457c;
}

/* Popup content */
.popup-content {
    background-color: #20457c;
    margin: 5% auto;
    /* 15% from the top and centered */
    border-radius: 25px;
    display: block;
    padding: 30px;
    position: relative;
    z-index: 1;
    width: 90%;
    /* Could be more or less, depending on screen size */
}

.pay-popup-content {
    background-color: white;
    margin: 5% auto;
    /* 15% from the top and centered */
    border-radius: 25px;
    display: block;
    padding: 50px;
    position: relative;
    z-index: 1;
    width: 60%;
}

.crypto-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid #20457c;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #3b3b3b;
    transition: background-color 0.3s;
}

.crypto-button:hover {
    background-color: #f0f0f0;
}

.circle {
    width: 16px;
    height: 16px;
    border: 4px solid #20457c;
    border-radius: 50%;
    margin-right: 10px;
}

.text {
    margin-right: 10px;
}

.icon {
    width: 24px;
    height: 24px;
    background: url('icon-url-here.png') no-repeat center center;
    background-size: contain;
}

.checkbox-wrapper-4 * {
    box-sizing: border-box;
  }
  .checkbox-wrapper-4 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
  }
  .checkbox-wrapper-4 .cbx:not(:last-child) {
    margin-right: 6px;
  }
  .checkbox-wrapper-4 .cbx:hover {
    background: rgba(38, 0, 255, 0.06);
  }
  .checkbox-wrapper-4 .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-4 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(0,16,75,0.05);
  }
  .checkbox-wrapper-4 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-4 .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
  }
  .checkbox-wrapper-4 .cbx:hover span:first-child {
    border-color: #20457c;
  }
  .checkbox-wrapper-4 .inp-cbx {
    position: absolute;
    visibility: hidden;
  }
  .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
    background: #20457c;
    border-color: #20457c;
    animation: wave-4 0.4s ease;
  }
  .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-4 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
  }
  @media screen and (max-width: 640px) {
    .checkbox-wrapper-4 .cbx {
      width: 100%;
      display: inline-block;
    }
  }
  @-moz-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @-webkit-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @-o-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  @keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }

@media all and (max-width: 767px) {
    .pay-popup-content {
        margin: 50% auto;
        padding: 30px;
        width: 90%;
    }
}

/* Close button */
.close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: rgb(201, 201, 201);
    text-decoration: none;
    cursor: pointer;
}

.d-form input {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background-color: rgba(249, 235, 255, 0.15);
    border: none;
    outline: none;
    font-weight: 300;
    padding: 0px 20px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
}

.d-form label {
    margin: 10px;
    color: white;
}

.d-form h1 {
    margin: 10px;
    color: white;
}

.d-form input::placeholder {
    color: #fff;
}

.d-form textarea {
    width: 100%;
    height: 120px;
    border-radius: 25px;
    background-color: rgba(249, 235, 255, 0.15);
    border: none;
    outline: none;
    font-weight: 300;
    padding: 20px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.d-form textarea::placeholder {
    color: #fff;
}

.d-form button {
    border: none;
    height: 50px;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    background-color: #fff;
    padding: 0px 25px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-radius: 25px;
    color: #20457c;
    transition: all .4s;
    position: relative;
    z-index: 3;
}

.d-form #form-cancel {
    border: none;
    height: 50px;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffffff00;
    padding: 0px 25px;
    border-radius: 25px;
    color: #ffffff;
    transition: all .4s;
    position: relative;
    z-index: 3;
}

.d-form button:hover {
    opacity: 0.8;
}

.ts-container h2 {
    font-size: 26px;
    margin: 20px 0;
    text-align: center;

    small {
        font-size: 0.5em;
    }
}

.responsive-table {
    li {
        border-radius: 3px;
        padding: 25px 30px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .table-header {
        background-color: #20457c;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .table-row {
        background-color: #ffffff;
        box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
    }

    .col-1 {
        flex-basis: 20%;
    }

    .col-2 {
        flex-basis: 20%;
    }

    .col-3 {
        flex-basis: 20%;
    }

    .col-4 {
        flex-basis: 20%;
    }

    .col-5 {
        flex-basis: 20%;
    }

    .col-6 {
        flex-basis: 5%;
    }
    .col-7 {
        flex-basis: 7%;
    }
    .col-8 {
        flex-basis: 28%;
    }
    .col-9 {
        flex-basis: 10%;
    }
    .col-10 {
        flex-basis: 10%;
    }
    .col-11 {
        flex-basis: 15%;
    }
    .col-12 {
        flex-basis: 10%;
    }
    .col-13 {
        flex-basis: 15%;
    }


    .col-14 {
        flex-basis: 5%;
    }
    .col-15 {
        flex-basis: 10%;
    }
    .col-16 {
        flex-basis: 10%;
    }
    .col-17 {
        flex-basis: 25%;
    }
    .col-18 {
        flex-basis: 10%;
    }
    .col-19 {
        flex-basis: 20%;
    }
    .col-20 {
        flex-basis: 10%;
    }
    .col-21 {
        flex-basis: 10%;
    }

    @media all and (max-width: 767px) {


        .table-header {
            display: none;
        }

        .pay-popup-content {
            background-color: white;
            margin: 5% auto;
            /* 15% from the top and centered */
            border-radius: 25px;
            display: block;
            padding: 30px;
            position: relative;
            z-index: 1;
            width: 90%;
            /* Could be more or less, depending on screen size */
        }

        .table-row {}

        li {
            display: block;
        }

        .col {

            flex-basis: 100%;

        }

        .col {
            display: flex;
            padding: 10px 0;

            &:before {
                color: #6C7A89;
                padding-right: 10px;
                content: attr(data-label);
                flex-basis: 50%;
                text-align: right;
            }
        }

    }
}

input {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    background-color: rgba(198, 198, 198, 0.15);
    border: none;
    outline: none;
    font-weight: 300;
    padding: 0px 20px;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
}

select {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    background-color: rgba(198, 198, 198, 0.15);
    border: none;
    outline: none;
    font-weight: 300;
    padding: 0 20px;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Özel dropdown oku eklemek için */
select:after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Hover efekti */
select:hover {
    background-color: rgba(198, 198, 198, 0.25);
}

/* Focus efekti */
select:focus {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Option stilleri */
select option {
    background-color: #fff;
    color: #1a1a1a;
}

button {
    border: none;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    background-color: #20457c;
    padding: 0px 25px;
    border-radius: 25px;
    color: #fff;
    transition: all .4s;
    position: relative;
}

button:hover {
    opacity: 0.8;
}

iframe {
    width: 560px;
    height: 315px;
}




/*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/

/**
   * responsive for larger than 400px screen
   */

@media (min-width: 400px) {

    /**
     * HOME
     */

    iframe {
        width: 100%;
        height: 300px;
    }

    .revenue-item:first-child {
        margin-bottom: 0;
    }

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

}





/**
   * responsive for larger than 570px screen
   */

@media (min-width: 570px) {

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 550px;
        margin-inline: auto;
    }



    /**
     * HEADER
     */

    .navbar-list,
    .user-action-list {
        padding-inline: 0;
    }

    iframe {
        width: 100%;
        height: 200px;
    }

    /**
     * HOME
     */

    .card-price {
        --fs-2: 1.625rem;
    }



    /**
     * TASKS
     */

    .tasks .card-meta-list {
        justify-content: flex-end;
    }

}





/**
   * responsive for larger than 768px screen
   */

@media (min-width: 768px) {

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 700px;
    }


    iframe {
        width: 100%;
        height: 300px;
    }

    /**
     * HOME
     */

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

    .progress-item:not(:last-child) {
        margin-bottom: 0;
    }

    .home .card-wrapper {
        grid-template-columns: 1fr 1fr;
    }

}





/**
   * responsive for larger than 992px screen
   */

@media (min-width: 992px) {

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 950px;
    }



    /**
     * HEADER
     */

    .menu-toggle-btn {
        display: none;
    }

    .header {
        height: unset;
        padding-block: 10px;
    }

    .header.active {
        height: unset;
    }

    .navbar {
        all: unset;
        flex-grow: 1;
    }

    .navbar .container {
        display: flex;
    }

    .navbar-list {
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-inline: auto;
    }

    .user-action-list {
        flex-direction: row;
        gap: 20px;
    }



    /**
     * HOME
     */

    .article.container {
        padding-block: 35px;
    }

    .home {
        grid-template-columns: 1.25fr 0.75fr 1fr;
    }

    .home .card-wrapper {
        grid-template-columns: 1fr;
    }

    .progress-list {
        align-items: flex-end;
    }



    /**
     * PROJECTS
     */

    .project-list {
        grid-template-columns: repeat(2, 1fr);
    }



    /**
     * TASKS
     */

    .tasks .task-card {
        grid-template-columns: 1fr 0.5fr 0.5fr;
        align-items: center;
    }



    /**
     * FOOTER
     */

    .footer-list {
        margin-bottom: 0;
    }

    .footer .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

}


.card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .card-container .card {
    flex: 1;
  }


/**
   * responsive for larger than 1200px screen
   */

@media (min-width: 1200px) {

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 1150px;
    }



    /**
     * HEADER
     */

    .navbar-list {
        gap: 25px;
    }



    /**
     * HOME
     */

    .card-price {
        --fs-2: 1.780rem;
    }

}