
:root {
    --primary-color: #304DDB;
    --secondary-color: #7383FF;
    --primary-color-light: #E9E4FF;
}

* {
    margin: 0;
    padding: 0;
}

aside {
    position: fixed;
    top: 0;
    width: 13%;
    height: calc(100% - 30px);
    padding: 15px 2%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 5%;
    background: white;
    border-right: 2px solid rgba(0,0,0,0.25);
    z-index: 1;
    filter: blur(10px);
}

aside .logo {
    width: 50%;
    height: auto;
}

aside .logo img {
    width: 100%;
    height: 100%;
}

aside .company-name {
    font-family: Montserrat;
    color: #171616;
    font-size: 1.2em;
    font-weight: 600;
}

aside .options {
    width: 100%;
    display: flex;
    flex-direction: column;
}

aside .option {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 10%;
    padding: 1em;
}

aside .option svg {
    width: 25px;
    height: 25px;
}

aside .option p {
    text-align: left;
    font-size: 1.1rem;
    font-family: Roboto;
}

aside .option.active {
    background: #F2F1EF;
    fill: #171616;
    color: #171616;
    border-radius: 15px;
}

aside .logout {
    width: 80%;
    position: absolute;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    line-height: normal;
    font-family: Roboto;
    font-weight: 600;
    font-size: 1.2em;
    cursor: pointer;
    transition: scale 0.2s linear;
    color: var(--primary-color);
    bottom: 5%;
    z-index: 2;
}

aside .logout:hover {
    scale: 1.05;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-left: 17%;
    padding: 2% 3%;
    filter: blur(10px);
}

.left-display {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    gap: 2em;
    width: 30%;
}

.left-display .welcome{
    font-size: 1.5em;
    font-family: Montserrat;
    font-weight: 600;
    line-height: normal;
}

.left-display .credit-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    gap: 2em;
    border: 1px solid #C2C5C4;
    border-radius: 25px;
    padding: 6%;
    width: 85%;
    align-self: center;
    font-family: Montserrat;
    font-weight: 600;
}

.left-display .title {
    font-size: 1.2em;
}

.left-display .credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.remaining-credit {
    align-self: center;
}

.remaining-credit .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.remaining-credit svg {
    position: relative;
}

.remaining-credit svg .progress {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 264;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s ease-in-out;
}

.remaining-credit .info-text {
    position: absolute;
    color: #141414; /* Match the loader's blue color */
    font-family: Montserrat;
    font-weight: 600;
    font-size: 1.3em;
    text-align: center;
    width: max-content;
}

.credits div {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 45%;
    gap: 2%;
    font-weight: 500;
    font-size: 1em;
}

.credits .radio-btn {
    width: 10px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #F2F1EF;
}

.credits .radio-btn.used {
    background: #7383FF;
}

.credits div > p:nth-child(2) {
    margin-left: 2%;
}

.credit-container button {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    gap: 1.5em;
    width: 90%;
    padding: 0.75em 2em;
    background: var(--primary-color);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 500;
    font-family: Roboto;
    font-size: 1em;
    transition: scale 0.2s linear;
}

.credit-container button:hover {
    scale: 1.05;
}

.right-display {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    gap: 2em;
    width: 65%;
    padding-top: 4em;
}

.right-display .redirection-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
}

.redirection-container div {
    display: flex;
    justify-content: start;
    flex-direction: column;
    width: 25%;
    border-radius: 25px;
    padding: 3%;
    background: white;
    gap: 2em;
}

.redirection-container .order {
    background: #A8E7EF;
}

.redirection-container .draft {
    background: #FFF1D8;
}

.redirection-container .assistant {
    border: 1px solid #2d2c2c;
    gap: 1em;
}

.redirection-container div>p {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 5%;
    font-family: Montserrat;
    font-weight: 500;
    color: #141414;
}

.redirection-container div>a {
    display: flex;
    justify-content: start;
    align-items: center;
    font-family: Roboto;
    font-weight: 600;
    text-decoration: none;
    color: #171616;
    gap: 0.5em;
    line-height: 1;
    transition: scale 0.2s linear;
}

.redirection-container div>a>span {
    text-decoration: underline;
}

.redirection-container div>a:hover {
    scale: 1.05;
}

.redirection-container .assistant>p {
    font-weight: 600;
}

.redirection-container .assistant>.assistant-name {
    font-family: Roboto;
    color: #605F5F;
    font-weight: 400;
    font-size: 0.9em;
}

.redirection-container .assistant>a {
    padding: 0 6%;
    text-decoration: none;
    justify-content: space-between;
    font-family: Montserrat;
    font-weight: 500;
    color: #4D4D4D;
}

.redirection-container .assistant>a>span {
    text-decoration: none;
}

.redirection-container .assistant>.timing {
    font-family: Roboto;
    color: #909090;
    font-weight: 400;
    font-size: 0.8em;
    line-height: 1;
}

.right-display .watch-tutorial {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 5%;
    width: 90%;
    border-radius: 25px;
    background: #FFE5E7;
}

.watch-tutorial .info {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1.5em;
    width: 60%;
}

.watch-tutorial .info>p:nth-child(1) {
    font-family: Montserrat;
    color: #141414;
    font-weight: 600;
    font-size: 1.3em;
    line-height: 1;
}

.watch-tutorial .info>p:nth-child(2) {
    font-family: Roboto;
    color: #4D4D4D;
    font-weight: 400;
    font-size: 1em;
}

.watch-tutorial .video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
}

.watch-tutorial .video>iframe {
    width: 100%;
    height: auto;
    border-radius: 15px;
    aspect-ratio: 16/9;
}

.right-display .select-invite {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1.5em;
    width: 100%;
}

.select-invite>p:nth-child(1) {
    font-family: Montserrat;
    font-weight: 600;
    color: #171616;
    font-size: 1.5em;
}

.select-invite .select-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.select-container .title {
    width: 65%;
    border-radius: 5px;
    border: 1px solid #C2C5C4;
    cursor: pointer;
    color: #64748B;
    font-family: Manrope;
    position: relative;
    height: 100%;
}

.select-container .title>div:nth-child(1) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.2% 5%;
}

.select-container .title i {
    font-size: 1.2em;
    line-height: normal;
}

.select-container .invites {
    position: absolute;
    top: 100%;
    width: 92%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: flex-start;
    justify-content: start;
    padding: 0% 3%;
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: 5%;
    padding-bottom: 5%;
}

.select-container button {
    width: 25%;
    font-family: Roboto;
    font-weight: 500;
    color: white;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 2% 3%;
    cursor: pointer;
    font-size: 1em;
    border: none;
    outline: none;
    transition: box-shadow 0.2s linear;
}

.select-container button:hover {
    box-shadow: -4px 4px 5px 0 rgb(101, 101, 101);
}

.select-container .video-invite {
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.select-container .video-invite input[type='radio'] {
    display: none;
}

.select-container .video-invite input[type="radio"] + label {
    position: relative;
    cursor: pointer;
    width: max-content;
}

.select-container .video-invite input[type="radio"] + label::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f0c8';
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 10px;
    color: white;
    height: 12px;
    width: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #bbbbbb;
    translate: 0 -50%;
}

.select-container .video-invite input[type="radio"]:checked + label::before {
    content: '\f00c';
    font-size: 9px;
    background: #007663;
    color: white;
    height: 10px;
    width: 10px;
    padding: 2px;
    border: none;
}

.select-container .video-invite label>p {
    font-family: Manrope;
    color: #191D23;
    font-size: 1em;
    font-weight: 400;
    padding-left: 2em;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #E7EAEE;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 5px;
}

.hide {
    display: none !important;
}

.rotate {
    rotate: 180deg;
}



/* Login Modal */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 15;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 15%;
    height: 45%;
    padding: 2% 4%;
    border-radius: 10px;
    background: white;
    overflow: hidden;
}

.modal-content .background-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    opacity: 0.2;
    z-index: 1;
}

.background-overlay img {
    width: 100%;
    height: auto;
}

.modal form {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.modal .title {
    font-size: 1.5rem;
    font-family: Montserrat;
    font-weight: 600;
    align-self: center;
}

.modal .body {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 200%;
    gap: 5%;
    height: 60%;
}


.modal .body>div:not(.showpassword-div) {
    display: flex;
    justify-content: start;
    flex-direction: column;
    width: 100%;
    gap: 1.5em;
    transition: transform 1s ease-in-out;
}

.modal-content .body div.separator {
    flex-direction: row;
    align-items: center;
    width: 100%;
    display: flex;
}

.modal-content .body div.separator hr {
    border: none;
    width: 100%;
    border-top: 2px solid rgba(0, 0, 0, 0.25);
    outline: none;
}

.modal-content .body div.separator p {
    width: 40%;
    text-align: center;
    font-weight: 600;
    font-family: Montserrat;
}

.modal .body div label {
    font-size: 1em;
    margin-bottom: 5%;
    font-weight: 600;
    font-family: Inter;
}

.modal .body div input:not(input[type="checkbox"]) {
    padding: 2% 3%;
    outline: none;
    border: 1px solid #C1C1C1;
    border-radius: 3px;
    width: 93%;
    font-family: Inter;
    background: transparent;
    color: black;
    font-size: 1em;
    font-family: 'Inter';
}

.showpassword-div > label {
    margin-left: 0.5rem;
    margin-bottom: 0 !important;
    cursor: pointer;
}

.showpassword-div > input {
    outline: none;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.showpassword-div > input:active,
.showpassword-div > input:focus {
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.084);
}

.modal-content button {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3%;
    width: 75%;
    cursor: pointer;
    font-size: 1em;
    background: white;
    color: #141414;
    border: 2px solid #141414;
    outline: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: Roboto;
    transition: box-shadow 0.2s ease-in-out;
    align-self: center;
}

.modal-content button:hover {
    background: #141414;
    color: white;
}

.modal-content button:active {
    background: #141414;
    color: white;
}

.modal-content .body div.right-body {
    visibility: hidden;
}

.modal-content .right-body .back-btn {
    width: max-content;
    font-family: Roboto;
    line-height: normal;
    font-weight: 500;
    cursor: pointer;
}

.modal-content .right-body .back-btn i {
    font-size: 0.8em;
}

.modal-content .login {
    display: none;
}

.modal-content .right-body .error-otp,
.modal-content .left-body .error-number {
    margin-top: 5%;
    text-align: center;
    font-size: 0.8em;
    font-family: 'Inter';
    color: red;
    font-weight: 600;
    display: none;
}



/* Input Error Modal */
.modal-content .body div.input-error {
    color: #322f2f;
    background: white;
    border: 1px solid grey;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 5px 5px 5px 0px #80808075;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    visibility: hidden;
    z-index: -1;
    top: 0;
    left: 0;
    scale: 0;
    transition: scale 0.2s ease-in-out;
}

.modal-content .body div.input-error span:nth-child(1) {
    color: white;
    background: orange;
    font-weight: 700;
    font-size: 1.2rem;
    font-style: normal;
    font-family: arial;
    padding: 2px 10px;
    margin-right: 5px;
    position: relative;
    z-index: 2;
    border-radius: 2px;
}

.modal-content .body div.input-error span:nth-child(2) {
    font-family: calibri;
    font-style: normal;
    font-size: 0.9rem;
}

.modal-content .body div.input-error::after {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    translate: 0 -50%;
    border-width: 1px;
    border-style: solid;
    border-color: grey transparent transparent grey;
    width: 10px;
    height: 10px;
    rotate: 45deg;
    background: white;
    z-index: 1;
}

.logo-container {
    /* background-color: #000; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    text-decoration: none;
    font-family: Inter;
    font-weight: 600;
    font-style: normal;
    cursor: pointer;

}

@media screen and (max-width: 768px) {
    main {
        font-size: 14px;
    }

    main {
        margin-left: 0;
        padding: 5%;
        flex-direction: column;
        margin-top: calc(5vh + 30px);
    }

    .left-display, .right-display {
        width: 100%;
    }

    .right-display {
        padding-top: 2em;
    }

    .right-display .watch-tutorial {
        flex-direction: column;
        gap: 2em;
    }

    .credit-container button {
        width: 85%;
        padding: 1.2em 2em;
        font-size: 1.2em;
    }

    .watch-tutorial .info {
        width: 100%;
        
    }

    .right-display .watch-tutorial {
        justify-content: center;
        align-items: center;
    }

    .watch-tutorial .video {
        width: 90%;
    }

    .right-display .redirection-container {
        flex-direction: column;
        gap: 2em;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .redirection-container div {
        width: 80%;
        padding: 1.5em 2.5em;
    }

    .redirection-container div>p {
        padding: 0;
    }

    .redirection-container .assistant>a {
        padding: 0;
    }

    .left-display .credit-container {
        width: 88%;
    }
}

.navbar-div {
    display: flex;
    justify-content: space-between;
}

.hamburger {
    display: none;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .navbar-div {
        width: 92%;
    }

    .select-invite .select-container {
        flex-direction: column;
        gap: 2em;
    }

    .select-container .title {
        width: 100%;
    }

    .select-container button {
        width: 45%;
        padding: 1em;
        font-size: 1.2em;
    }

    .select-container .invites {
        background-color: white;
        top: 90%;
        width: 95%;
    }

    aside .company-name, aside .options, aside .logout {
        display: none;
    }

    aside {
        width: 100%;
        height: 5vh;
        position: fixed;
        border: none;
        border-bottom: 2px solid rgba(0, 0, 0, 0.25);
    }

    aside .logout {
        width: 15%;
        position: relative;
    }

    aside .options {
        width: 40%;
    }
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 11;
}

.login-container {
    width: 70%;
    height: 70%;
    max-width: 1000px;
    display: flex;
    padding: 1.5rem;
    background: #fff;
    border-radius: 30px;
}

.login-container .action-btn-section, .login-container .content-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-section {
    width: 55%;
    position: relative;
    align-items: flex-start;
}

.login-container .action-btn-section {
    width: 45%;
    background: rgba(0,118,99,.025);
    border: 1px solid rgba(0,118,99,.25);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.content-section .inner-section {
    width: 80%;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    transform: translate(0, -15%);
}

.content-section .back-btn {
    transform: rotate(0);
    transition: scale .4s ease-in-out;
}

.content-section .back-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    text-align: center;
    background: #fff;
    border: 2px solid rgba(0,118,99,.15);
    box-shadow: 0 25px 40px rgba(59,80,90,.05);
    transform: rotate(-180deg) matrix(-1,0,0,1,0,0);
    color: #007663;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.content-section .back-btn svg {
    fill: #007663;
    width: 20px;
    height: 20px;
    margin-top: 65%;
}

.login-container .action-btn-section {
    width: 45%;
    background: rgba(0,118,99,.025);
    border: 1px solid rgba(0,118,99,.25);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.login-container .action-btn-section, .login-container .content-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-container .action-btn-section .outer-container {
    width: 100%;
}

.login-container .action-btn-section .outer-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    transition: transform 1s ease-in-out;
    cursor: pointer;
}
.action-btn-section div {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,.24);
}
.action-btn-section>div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.action-btn-section .inner-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 7%;
    text-align: left;
}

.action-btn-section .confirm-otp-container>p, .action-btn-section .inner-section>p:first-child {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    width: 100%;
    text-align: left;
    color: rgba(13,13,13,.4);
}

.action-btn-section .inner-section>div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.input-div {
    flex-direction: column;
    height: 60%;
    margin-top: 10%;
    padding: 0% 3%;
}

.email-div, .password-div, .showpassword-div, .submit-div {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    width: 100%;
}

.email-div > input, .password-div > input {
    margin-top: 5px;
    outline: none;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084);
    border-radius: 5px;
    padding: 3%;
    width: 94%;
    transition: all 0.2s ease-in-out;
}

.showpassword-div {
    display: flex;
    width: auto;
    align-self: baseline;
    padding: inherit;
    flex-direction: row;
    align-items: center;
    user-select: none;
}

.submit-div button {
    width: 65%;
    background: var(--primary-color);
    color: white;
    padding: 5%;
    border: none;
    outline: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: box-shadow 0.2s ease-in-out;
    margin-top: 5%;
    cursor: pointer;
}

.action-btn-section form {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,.24);
}

.action-btn-section .inner-section>form {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.login-container .action-btn-section .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid rgba(0,118,99,.25);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transform: rotate(45deg);
    color: grey;
}

@media (max-width: 768px) {
    .login-container .action-btn-section {
        width: 100%;
        border-radius: 30px;
    }

    .login-container .content-section {
        display: none;
    }

    .login-container .action-btn-section .close-btn {
        display: flex;
    }
}

#dashboard {
    display: none;
    position: absolute;
    min-width: 200px;
    bottom: -20%;
    transform: translateY(88%);
    right: 3%;
    font-size: 14px;
    padding: 1rem;
    border-radius: 10px;
    z-index: 100;
    background: #fff;
    box-shadow: 0 15px 80px -16px rgba(0,0,0,.2);
}

#dashboard.active {
    display: flex;
}

#dashboard {
    flex-direction: column;
    padding: 1rem;
    font-family: Montserrat;
}

#dashboard div, .mobile-navbar div {
    width: 92%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.dashboard-content, .sidebar-content {
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    padding: 0.5rem;
}
.dashboard-content {

    margin: 1em 0 !important;
}

#dashboard div p {
    margin: 0;
    padding: 0.2rem 0;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    font-family: Montserrat;
    cursor: pointer;
    position: relative;
}

#dashboard .dash-btn, .sidebar-content .dash-btn {
    background-color: rgba(128,128,128,.15);
}

#dashboard div p svg {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

#dashboard button, .mobile-navbar button {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    background: var(--primary-color);
    padding: 0.4rem 1.4rem;
    border: none;
    outline: 0;
    display: flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
}

.dashboard-content .company-name {
    margin-bottom: 1em;
    margin-top: 0.3em;
}

.dashboard-content .dash-btn {
    margin-bottom: 2.4em !important;
    padding: 1em 0 !important;
}

.logout-btn {
    margin-bottom: 0.3em;
}

.content-section>.inner-section>p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    width: fit-content;
    float: right;
    color: rgba(13,13,13,.7);
    font-family: Montserrat;
}

.content-section .inner-section div p {
    padding: 0 5px;
    background: var(--primary-color-light);
    font-weight: 500;
    font-size: 12px;
    width: fit-content;
    line-height: 20px;
    float: right;
    color: #0d0d0d;
    transform: translateX(-10%);
}

.content-section .inner-section .back-image-logo {
    position: absolute;
    align-self: center;
    left: 50%;
    width: 90%;
    height: 90%;
    opacity: .1;
    transform: translate(-50%,-60%);
    object-fit: cover;
}

.content-section .inner-section .back-image-logo img {
    width: 100%;
}

.logo-container img {
    object-fit: contain;
    height: 2.2em;
    width: auto;
}