﻿@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400&family=Josefin+Sans:wght@100;200;300;400;500;700&family=Manrope:wght@200;300;400;800&family=Playfair+Display:wght@400;500;600;900&family=Roboto:wght@100;300;400;900&family=Dancing+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500&display=swap");

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    box-sizing: border-box;
    list-style-type: none;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
}

:root {
    --text-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-family: "Roboto", sans-serif;
}

html {
    overflow-x: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: black;
    display: block;
}

ul {
    list-style: none;
}

input:focus, textarea:focus {
    outline: none;
}

input[type='submit'] {
    cursor: pointer;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.container-sm {
    margin: 0 auto;
    width: 100%;
    max-width: 768px;
    position: relative;
}

.container-md {
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
    max-width: 1400px;
    position: relative;
}

.container-lg {
    padding: 0 120px;
    -webkit-transition: .4s;
    transition: .4s;
    max-width: 2000px;
    margin: 0 auto;
    position: relative;
}

img {
    max-width: 100%;
}

section {
    position: relative;
    margin-bottom: 4rem;
}

.half-arrow {
    border-left: unset;
}

    .half-arrow::before {
        content: '';
        width: 4rem;
        height: 2px;
        background: white;
        display: block;
        -webkit-transform: rotate(-45deg) translate(-11px, -1px);
        transform: rotate(-45deg) translate(-11px, -1px);
    }

/* custom */
.flex-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .flex-list > * {
        margin: .5rem;
    }

.flex-list__2 {
    width: calc(calc(100% / 2) - 1rem);
}

.flex-list__3 {
    width: calc(calc(100% / 3) - 1rem);
}

.flex-list__4 {
    width: calc(calc(100% / 4) - 1rem);
}

body {
    min-height: 100vh;
    background: #383a3c;
}

main {
    margin-left: 20rem;
    padding: 2rem 1rem;
    -webkit-transition: .5s;
    transition: .5s;
}

    main.genis {
        margin-left: 4rem;
    }

.box-title {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.51);
}

.btn {
    cursor: pointer;
    padding: 4px 8px;
    -webkit-transition: all .4s;
    transition: all .4s;
    border-radius: .25rem;
}

    .btn.btn-md {
        padding: 5px 10px;
        font-size: 16px;
    }

    .btn.info {
        color: #48af81;
        border: 1px solid #48af81;
    }

        .btn.info:hover {
            color: #262628;
            background: #48af81;
        }

.btn-normal {
    color: #1696d8;
    border: 1px solid #1696d8;
}

    .btn-normal:hover {
        color: #262628;
        background: #1696d8;
    }

.btn-negative {
    color: #fd6767;
    border: 1px solid #fd6767;
}

    .btn-negative:hover {
        color: #262628;
        background: #fd6767;
    }


.login-wrapper {
    min-height: 100vh;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: center;
    justify-content:center
}

    .login-wrapper .box-title {
        padding-left: 1rem;
        font-size: 2rem;
    }

    .login-wrapper .loginicon {
        text-align: center;
    }

.login-form {
    max-width: 35rem;
    padding: 1rem;
}

.design-box {
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    position: absolute;
    background: #1696d8;
    border-radius: 85% 90% 89% 91% / 94% 82% 94% 90%;
    -webkit-animation: turn 15s linear infinite;
    animation: turn 15s linear infinite;
}

    .design-box.mini {
        top: 0rem;
        left: 35vw;
        opacity: .5;
        width: 20vw;
        height: 20vw;
        -webkit-animation: turn 20s linear infinite;
        animation: turn 20s linear infinite;
    }

.login-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

    .login-footer > * {
        font-size: 14px;
        margin: 0 6px;
        text-align: center;
        color: #262628;
    }

@-webkit-keyframes turn {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes turn {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.line-chart {
    -webkit-animation: fadeIn 600ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
    animation: fadeIn 600ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
    opacity: 0;
    max-width: 640px;
    width: 100%;
}

.aspect-ratio {
    height: 0;
    padding-bottom: 50%;
}

@-webkit-keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


.input-box {
    margin-bottom: 15px;
}

    .input-box.flex-list {
        margin-bottom: unset !important;
    }

        .input-box.flex-list > * {
            margin-top: unset;
            margin-bottom: unset !important;
        }

            .input-box.flex-list > *:nth-child(1) {
                margin-bottom: 15px !important;
            }

.input-wrapper {
    height: 2.5rem;
    overflow: hidden;
    position: relative;
}

.highliterbox {
    width: 100%;
    height: inherit;
    font-size: 15px;
    padding: 2px 13px;
    position: relative;
    border-radius: .25rem;
    color: white;
    background-color: #262628;
    border: 0.5px solid rgba(128, 128, 128, 0.129);
}

.input-box label {
    color: gray;
    font-size: 15px;
    margin-bottom: 5px;
    display: inline-block;
}

.input-box .input-icon::after {
    content: attr(data-icon);
    right: 0;
    bottom: 0;
    width: 40px;
    height: 100%;
    color: white;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: fontAwesome;
}


@media only screen and (max-width: 1200px) {
    .container-lg {
        padding: 0 80px;
    }

    .container {
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 992px) {
    .container-lg {
        padding: 0 40px;
    }

    .design-box {
        width: 70vw;
        height: 70vw;
    }

        .design-box.mini {
            left: 55vw;
            width: 35vw;
            height: 35vw;
        }

    
    main {
        margin-left: 4rem;
    }
}

@media only screen and (max-width: 768px) {
    .container-lg {
        padding: 0 20px;
    }

    .flex-list__4 {
        width: calc(calc(100% / 3) - 1rem) !important;
    }

    .flex-list__3 {
        width: calc(calc(100% / 2) - 1rem) !important;
    }

    .flex-list__2 {
        width: calc(100% - 1rem) !important;
    }

    .design-box {
        top: -10%;
    }

    
}

@media only screen and (max-width: 576px) {
    .container-lg {
        padding: 0 14px;
    }

    .flex-list__4 {
        width: calc(calc(100% / 2) - 1rem) !important;
    }

    .highliterbox {
        font-size: 14px;
    }
}

@media only screen and (max-width: 415px) {
    .container-lg {
        padding: 0 10px;
    }

    .flex-list__3 {
        width: 100% !important;
    }

    .flex-list__4 {
        width: 100% !important;
    }
}

@media only screen and (max-width: 350px) {
    .container {
        padding: 0 10px !important;
    }

    .container-lg {
        padding: 0 5px;
    }
}
