.action {
    position: absolute;
    right: 30px;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.action .profile {
    position: relative;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    aspect-ratio: 1;
}

.action .profile-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: max-content;
    align-items: center;
}

.action .profile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.action .menu {
    position: absolute;
    top: 120px;
    right: -10px;
    padding: 10px 20px;
    background: #1e2e4f;
    width: 200px;
    box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: 0.5s;
    visibility: hidden;
    opacity: -1;
    z-index: 1;
}

.action .menu.active {
    top: 80px;
    visibility: visible;
    opacity: 1;
}

.action .menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 28px;
    width: 20px;
    height: 20px;
    background: #1e2e4f;
    transform: rotate(45deg);
}

.action .menu h3 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
    font-weight: 500;
    color: #555;
    line-height: 1.5em;
}

.action .menu h3 span {
    font-size: 14px;
    color: #cecece;
    font-weight: 300;
}

.action .menu ul li {
    list-style: none;
    padding: 16px 0;
    border-top: 1px solid #293756;
    display: flex;
    align-items: center;
}

.action .menu ul li img {
    max-width: 20px;
    margin-right: 10px;
    opacity: 0.5;
    transition: 0.5s;
}

.action .menu ul li:hover img {
    opacity: 1;
}

.action .menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: 0.5s;
}

.action .menu ul li:hover a {
    color: #ff5d94;
}

:root {
    --navbar-x-padding: 60px;
    --content-container-padding: 100px;
}

.navbar {
    background-color: #202b42;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 var(--navbar-x-padding) 0 var(--navbar-x-padding);
    justify-content: space-between;
    position: relative;
    color: #fff;
    margin-bottom: 30px;
    position: sticky;
}

.navbar .logo {
    font-family: "Lancelot", serif;
    font-size: 36px;
    color: #fff;
}

.navbar,
.nav-left-section,
.nav-middle-section,
.nav-right-section {
    align-items: center;
    position: relative;
}

.content-container {
    padding: 0px var(--content-container-padding) 30px var(--content-container-padding);
}

.content-container.mini-container {
    padding: 0 300px 0 300px !important;
}

.title {
    color: #8795bb;
    margin-bottom: 25px;
    font-size: 29px;
    font-weight: bolder;
    font-family: "Amiri", sans-serif;
}

.courses-box,
.bundles-box,
.courses-container {
    flex-direction: row;
    display: flex;
    width: 100%;
    position: relative;
    gap: 20px;
    flex-wrap: wrap;
    flex-flow: row wrap;
    justify-content: center;
}

.course,
.bundle {
    background-color: #293756;
    padding: 20px;
    border-radius: 20px;
    width: 32%;
    display: flex;
    flex-direction: column;
    z-index: 0;
}

.course .course-name,
.bundle .bundle-name {
    color: #ccd6f2;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bolder;
    font-family: "Amiri", "Arial", sans-serif;
}

.bundle .bundle-description.limited {
    display: block;
    /* or inline-block */
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 7.2em;
    line-height: 1.85em;
}

.course .course-description,
.bundle .bundle-description {
    color: #9fabcd;
    flex: 1;
    font-family: "Amiri", "Arial", sans-serif;

}

.course .course-enrollment,
.bundle .course-enrollment {
    margin-top: 20px;
    width: 100%;
}

.button {
    background-color: #7b8ab6;
    border-radius: 20px;
    padding: 10px 20px 10px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: "Amiri", sans-serif;
    transition: all .3s linear;
    font-size: 18px;
}

.course .course-note {
    margin-top: 15px;
    color: #cbd5f1;
    opacity: .8;
    display: none;
}

.bundle .price {
    color: #fff;
    font-size: 21px;
    font-weight: bolder;
    text-align: center;
    margin-top: 10px;
}

.bundle.pinned {
    border: 4px solid #7b8ab6;
    box-shadow: 0 0 6px 1.3px #7b8ab6;
}

.modal .base {
    width: 60vw;
}

.modal .base .inner {
    padding: 27px;
    border-radius: 20px;
    background-color: #465685;
    color: #ccd6f2;
    box-shadow: 0 0 0px 3px #b2c0e6;
}

.modal .base .inner.overflow-scroll {
    max-height: 80vh;
    overflow-y: auto;
}

.modal .modal-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.modal .modal-message {
    font-size: 24px;
    text-align: center;
}

#burger-menu {
    cursor: pointer;
    height: 23px;
    width: 25px;
    overflow: visible;
    position: relative;
    z-index: 2;
    display: none;
}

#burger-menu span,
#burger-menu span:before,
#burger-menu span:after {
    background: #fff;
    display: block;
    height: 4px;
    opacity: 1;
    position: absolute;
    transition: 0.3s ease-in-out;
}

#burger-menu span:before,
#burger-menu span:after {
    content: "";
}

#burger-menu span {
    right: 0px;
    top: 10px;
    width: 25px;
}

#burger-menu span:before {
    left: 0px;
    top: -10px;
    width: 16px;
}

#burger-menu span:after {
    left: 0px;
    top: 10px;
    width: 20px;
}

#burger-menu.close span {
    transform: rotate(-45deg);
    top: 13px;
    width: 23px;
}

#burger-menu.close span:before {
    top: 0px;
    transform: rotate(90deg);
    width: 23px;
}

#burger-menu.close span:after {
    top: 0px;
    left: 0;
    transform: rotate(90deg);
    opacity: 0;
    width: 0;
}

#menu {
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    padding-top: 20px;
    transition: all 0.3s ease-in-out;

}

#menu.overlay {
    visibility: visible;
    opacity: 1;
    padding-top: 100px;
    /* background: rgba(0, 0, 0, 0.5); */
    background-color: #111c32;

}

#menu li {
    list-style: none;
}

/* #menu a {
    color: #fff;
    display: block;
    font-size: 32px;
    margin-bottom: 30px;
    text-decoration: none;
} */


@media screen and (min-width: 545px) and (max-width: 1210px) {

    .courses-box .course,
    .bundles-box .bundle,
    .courses-container .course {
        width: 48%;
    }

    .content-container {
        width: 100%;
    }

    .content-container.mini-container {
        padding: 0 60px 0 60px !important;
    }

    .course-tile {
        width: calc(100% / 3 - 8.2px) !important;
    }

    .modal-items-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.course-tile {
    flex-direction: column;
    gap: 5px;
}

@media screen and (max-width: 795px) {
    :root {
        --content-container-padding: 20px;
    }
    .modal .base {
        width: 95vw !important;
    }
}

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


    .modal-items-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .courses-box .course,
    .bundles-box .bundle,
    .courses-container .course {
        width: 100%;
    }

    :root {
        --navbar-x-padding: 20px;
    }

    .action {
        display: none;
    }

    .navbar .logo {
        font-size: 30px;
    }

    .title {
        font-size: 25px;
    }

    #burger-menu {
        display: block;
    }

    .content-container {
        width: 100%;
    }

    .content-container.mini-container {
        padding: 0 30px 0 30px !important;
    }

    .course-tile {
        width: calc(100% / 2 - 8.2px) !important;
    }

    .guest-box {
        display: none !important;
    }

    .action {
        display: none !important;
    }
}

.course-enrollment.joined {
    background-color: #7b8ab624;
    border: 3px solid #7b8ab6;
    color: #7b8ab6;
    font-weight: bolder;
    pointer-events: none;
}

.user-courses-list-container {
    border-radius: 17px;
    background-color: #111c32;
    padding: 17px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 9px;
    position: relative;
    flex-wrap: wrap;
    box-shadow: 0 0 4px 1px #6477af;
}

.user-courses-list-container .course-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px;
    background-color: #293756;
    border-radius: 13px;
    width: calc(100% / 4 - 8.2px);
    color: #7c94ba;
    font-weight: bolder;
    cursor: pointer;
    text-align: center;
    font-family: "Amiri", sans-serif;
    transition: all .3s linear;
}

.user-courses-show-all,
.user-events-show-all {
    display: none;
    width: 300px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 7px;
    transition: all .5s linear;
    font-family: "Amiri", sans-serif;
}

.user-courses-show-all:hover {
    background-color: #546ca0;
}

#show-all-button-container {
    width: 100%;
    display: block;
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

.course-tile:hover {
    /* #182744 */
    background-color: #182744;
}

.mt-35 {
    margin-top: 40px;
}

.tile,
.file-tile {
    background-color: #293756;
    padding: 10px;
    padding-left: 13px;
    padding-right: 13px;
    border-radius: 20px;
}

.file-tile {
    padding: 20px;
    font-size: 17px;
    cursor: pointer;
}

.user-attachments {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.event-tile, .submission-tile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.task-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.full-width {
    width: 100%;
}

.event-name,
.event-course-name, .submission-student-name {
    color: #7c94ba;
    font-weight: bolder;
}

table th,
table td,
table tr {
    font-family: "Amiri", sans-serif;
}

::-webkit-scrollbar {
    background-color: #14213b;
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: #405175;
    border-radius: 25px;
}

table tr:first-child {
    background-color: #293756;
    color: #7c94ba;
}

table {
    border-radius: 13px;
    border-spacing: 0;
    overflow: hidden;
    border-collapse: collapse;
}

table tr th {
    padding: 7px;
}

table td,
.datatable-wrapper .datatable-footer {
    padding: 7px;
    text-align: center;
    background-color: #182744;
    color: #7c94ba;
}

canvas#courses-stats {
    background-color: #182744;
    padding: 20px;
    border-radius: 17px;
    color: #fff;
}

.datatable-wrapper table {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.datatable-wrapper .datatable-footer {
    border-bottom-right-radius: 13px;
    border-bottom-left-radius: 13px;
    border-top: 1px solid #405480;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 24px;
    padding-left: 24px;
}

.icon-button {
    height: 35px;
    width: 35px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.button:hover {
    background-color: #636f99;
}

.input-field {
    width: 100%;
    padding: 17px;
    background-color: #293756;
    outline: none;
    border: none;
    border-radius: 17px;
    color: #8694ba;
    font-size: 18px;
    font-family: "Amiri", Arial, Helvetica, sans-serif;
}

.toggle-group {
    background-color: #293756;
    display: flex;
    width: fit-content;
    border-radius: 20px;
}

.toggle-group button:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.toggle-group button:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.toggle-group button:not([data-active="true"]) {
    background-color: transparent;
    color: #636f98;
}

.toggle-group button[data-active="true"] {
    color: #293756;
    background-color: #636f98;
}

.toggle-group button {
    font-weight: bolder;
    font-size: 18px;
}

.toggle-hidden-control {
    display: none;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-15 {
    margin-bottom: 15px;
}

.task-tile .event-tile, .submission-tile {
    padding: 20px;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

#title-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.dropdown-menu-icon {
    margin-right: 10px;
    font-size: 22px;
}

.no-courses-found,
.no-events-found {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 7px;
}

.no-courses-found h3,
.no-events-found h3 {
    font-weight: bolder;
    font-size: 23px;
}

.no-courses-found h4,
.no-events-found h4 {
    font-size: 19px;
}

.no-courses-found h3,
.no-courses-found h4,
.no-events-found h3,
.no-events-found h4 {
    color: #8694ba;
}

.no-courses-found *,
.no-events-found * {
    font-family: "Amiri", sans-serif;
}

.mt-15 {
    margin-top: 15px;
}

.wide-button {
    padding-right: 40px;
    padding-left: 40px;
}

.hidden {
    display: none !important;
}

.side-nav {
    width: 100vw;
    height: 100vh;
    background-color: #111c32;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 4;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    color: #8795bb;
}

.circle {
    border-radius: 100%;
}

#burger-menu {
    z-index: 10;
}

.side-nav-account-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.side-nav-account-info div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.side-nav-account-info div ion-icon {
    font-size: 27px;
}

.divider-inset {
    height: 3px;
    width: 100%;
    background-color: #8795bb;
    padding-right: 10px;
    padding-left: 10px;
    position: relative;
}

.divider-inset.thin {
    height: 1px;
}

.side-nav-item span {
    font-size: 28px;
}

.side-nav-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
    justify-content: start;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
}

.side-nav a {
    color: #8795bb;
    text-decoration: none;
    width: 100%;
}

.side-nav-item ion-icon {
    font-size: 27px;
}

.welcome-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.welcome-banner .title {
    font-size: 40px;
}

.welcome-banner .site-name {
    color: #fff;
    font-family: "Lancelot", "Arial", sans-serif;
    font-weight: bolder;
    font-size: 45px;
    text-decoration: underline;
}

.welcome-banner .subtitle {
    font-family: "Amiri", "Arial", sans-serif;
    color: #8795bb;
    font-size: 23px;
}

.welcome-banner .note {
    color: #fff;
    display: block;
    margin-top: 20px;
    font-family: "Amiri", "Arial", sans-serif;
    font-weight: bold;
    font-size: 28px;
}

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

.welcome-banner .emphasize {
    text-decoration: underline;
    font-family: "Amiri", "Arial", sans-serif;
}

.news-list {
    font-family: "Amiri", "Arial", sans-serif;
    color: #8795bb;
    font-size: 25px;
    padding: 30px;
}

.course.disabled-course {
    opacity: .5;
    pointer-events: none;
}

.nav-link {
    height: 70px;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-family: "Amiri", "Arial", sans-serif;
    justify-content: center;
    text-align: center;
}

.welcome-banner-footer-text {
    color: #fff;
    font-family: "Amiri", "Arial", sans-serif;
    font-weight: bolder;
    font-size: 24px;
}

.welcome-banner-footer ion-icon {
    color: #fff;
    font-size: 30px;
}

.welcome-banner-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    gap: 15px;
    text-decoration: none;
}

.welcome-banner-footer:visited {
    color: #fff;
    text-decoration: none;
}

.require-login-view {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8694ba;
    font-family: "Amiri", "Arial", sans-serif;
    font-size: 23px;
    width: 100%;

}

.items-info-box {
    color: #7b8ab6;
    padding: 20px;
}

.items-info-box * {
    font-family: "Amiri", "Arial", sans-serif;
}

.items-info-box .items-info-title {
    font-size: 23px;
    margin-bottom: 5px;
}

.item-details {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.tile-title {
    font-size: 23px;
    font-family: "Amiri", "Arial", sans-serif;
    color: #7b8ab6;
}

.tile.container {
    padding: 20px;
}

.payment-input {
    height: 48px;
    padding: 15px;
    border-radius: 13px;
    border: 0;
    outline: none;
    width: 100%;
    font-family: "Amiri", "Arial", sans-serif;
    font-size: 18px;
    margin-top: 20px;
    background-color: #151e35;
    color: #7b8ab6;
}

.payment-input::placeholder {
    color: #7b8ab6;
}

.text {
    font-family: "Amiri", "Arial", sans-serif;
}

.light-text {
    color: #7b8ab6;
}

.light-bg {
    background-color: #7b8ab6;
}

.text.light-text {
    font-size: 20px;
}

.payment-input:disabled {
    color: #4b587c;
}

.divider-inset span {
    position: absolute;
    background-color: #293756;
    top: 50%;
    left: 50%;
    padding: 15px;
    transform: translate(-50%, -50%);
}

.underline {
    text-decoration: underline;
}

.rtl {
    text-align: right;
}

.icon-button-tile {
    display: flex;
    flex-direction: column;
    background-color: #0E1320;
    padding: 20px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(25% - 7px);
    cursor: pointer;
    transition: all .3s linear;
    text-decoration: none;
}

.icon-button-tile:visited {
    text-decoration: none;
}

.icon-button-tile:hover {
    background-color: #080c17;
}

.icon-button-tile ion-icon {
    color: #829ff6;
    font-size: 43px;
}

.icon-button-tile span {
    color: #8795bb;
    font-family: "Amiri", "Arial", sans-serif;
    font-size: 24px;
}

.dropzone {
    min-height: 200px;
    background-color: #293756;
    border-radius: 25px;
    padding: 20px;
    position: relative;
}

.dropzone .dz-preview.dz-image-preview {
    background: #293756 !important;
}

.dropzone .dz-message .dz-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #7b8ab6;
    font-size: 18px;
    font-weight: bolder;
}

.dz-progress {
    display: none;
}

.bottom-drawer {
    position: fixed;
    bottom: 0;
    background-color: #151f3d;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 0 3px 3px #6477af;
    left: 50%;
    transform: translate(-50%, 105%);
    transition: transform .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    z-index: 1;
    overflow: hidden;
}

.drawer .drawer-content {
    overflow-y: auto;
    max-height: 65vh;
    padding-bottom: 20px;
    padding-left: 10px;
}

.drawer .drawer-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: #151f3d;
    padding: 5px;
}

.bottom-drawer::-webkit-scrollbar-track {
    border-radius: 20px;
}

.bottom-drawer.open {
    transform: translate(-50%, 0%);
}

.w-2xl {
    width: 99%;
}

.submission-due-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.submission-due-box ion-icon {
    font-size: 65px;
    color: #636f98;
}

.flex.row.gap-10{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.flex.footer{
    text-decoration: none !important;
}

.chapter-title {
    margin-bottom: 10px !important;
}

.chapter-block {
    margin-bottom: 40px;
}

.chapter-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #7b8ab6;
    align-items: center;
    text-decoration: none !important;
}

.chapter-item .chapter-item-name {
    font-size: 25px;
}

.chapter-item ion-icon {
    font-size: 28px;   
}

.chapter-items {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
}

.dashed-divider {
    height: 0px;
    width: 90%;
    border-top: 3px dashed #8795bb;
    position: relative;
    margin-top: 20px;
    margin-left: 5%;
    margin-right: 5%;
    transition: all .3s linear;
}

.dashed-divider button {
    padding: 3px 25px 3px 25px;
    background-color: #7b8ab6;
    color: #333;
    border-radius: 18px;
    font-size: 16px !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    outline: none;
    border: none;
    cursor: pointer;
    transition: all .3s linear;
}

.dashed-divider button:hover {
    background-color: #a5afcc;
}

.dashed-divider:has(button:hover) {
    border-top: 3px dashed #a5afcc;
}

.modal-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.modal-items-grid .item-box {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-items-grid .item-box, .modal-items-stack .item-box {
    transition: all .3s linear;
    border: 2.3px solid #7c94ba;
    cursor: pointer;
    border-radius: 15px;
}

.modal-items-stack .item-box {
    padding: 10px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.modal-items-stack {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.modal-items-grid .item-box ion-icon {
    font-size: 40px;
}

.modal-items-grid .item-box .item-title {
    font-size: 24px;
}

.modal-items-grid .item-box:hover, .modal-items-stack .item-box:hover {
    background-color: #2b3a64;
    border: 2.3px solid #2b3a64;
}

.close-button-footer .close-modal-button {
    margin-left: auto;
    padding: 10px 40px 10px 40px !important;
}

.close-button-footer {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top: 15px;
}

.chapter-block .chapter-block-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bold {
    font-weight: 900 !important;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
    justify-content: center;

}

.p-md {
    padding: 20px 30px;
}


.text-md {
    font-size: 20px;
}

.row-tile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.title-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}