/* === bootstrap, custom-framework modifiers === */
body {
    font-family: "Space Grotesk", sans-serif;
    font-weight: var(--font-normal);
    min-height: 100vh;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* === header, ham-burger aside === */
header {
    padding-top: 30px;
    padding-bottom: 30px;
    color: var(--theme-primary-color);
    box-shadow: 0 2px 2px 0 #00000020;
    position: relative;
    z-index: 9999;
}

/* ham-burger with animation */
.ham-burger-wrapper {
    display: flex;
    justify-content: flex-end;
}

.ham-burger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    position: relative;
    z-index: 99;
}

.ham-burger:focus {
    outline: none;
}

.line {
    fill: none;
    stroke: var(--theme-primary-color);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.clicked .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.clicked .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.clicked .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

/* aside */
aside {
    position: fixed;
    left: -300px;
    top: 110px;
    width: 300px;
    height: calc(100vh - 110px);
    background-color: var(--theme-primary-bg-light);
    padding: 30px 0;
    transition: all .5s ease-in-out;
    z-index: 9;
}

aside.pulled {
    left: 0;
}

aside .user {
    text-align: center;
    margin-bottom: 15px;
}

aside .user .thumb {
    margin-bottom: 10px;
}

aside .user .thumb img {
    width: 150px;
    max-width: 100%;
}

aside .user .name {
    font-weight: var(--font-bold);
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid red;
}

aside .nav-items > a {
    display: block;
    color: var(--theme-primary-color);
    font-size: 2rem;
    font-weight: var(--font-bold);
    text-decoration: none;
    padding: 10px;
    border-bottom: 1px solid var(--theme-primary-border);
    transition: all .5s ease-in-out;
}

aside .nav-items > a:hover {
    color: #fff;
    background-color: var(--theme-primary-color);
}

/* === main === */
main {
    transition: all .5s ease-in-out;
}

@media (min-width: 1200px) {
    body.pulled main {
        padding-left: 300px;
    }
}

/*=== form ===*/
.form-wrapper {
    padding: 100px;
    background-color: #fff;
    border: 1px solid var(--theme-primary-color);
    border-radius: 10px;
}

.input-wrapper {
    position: relative;
    padding-top: 8px;
}

.input-wrapper label {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0;
    background-color: #fff;
    padding: 0 10px;
    position: absolute;
    left: 25px;
    top: 0;
}

.input-wrapper input::placeholder {
    color: #cecece;
    font-weight: var(--font-light);
}

.input-wrapper input {
    display: block;
    width: 100%;
    font-size: 20px;
    background-color: #fff;
    padding: 15px 25px;
    border: 1px solid var(--theme-primary-border);
    border-radius: 10px;
}