#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 15px 35px 15px 0;
    transition: all 2s ease;
}

.navbar-button {
    z-index: 999999;
}

#navbar-menu {
    position: fixed;
    width: 250px;
    top: 0;
    right: -100%;
    bottom: 0;
    opacity: 0.5;
    background: linear-gradient(to right, rgba(0, 0, 0, .7), rgba(0, 0, 0, 1));
    z-index: 99;
    transition: all .5s ease;
    padding-top: 70px;
}

#navbar-menu .menu-item:hover {
    background-color: rgba(178, 85, 170, 0.4);
}

body.light #navbar.show #menu-btn span {
    background-color: black;
    transition: all .5s ease;
}


body.light #navbar-menu {
    background: linear-gradient(to right, rgba(255, 255, 255, .9), rgba(255, 255, 255, 1));
    transition: all .5s ease;
}

body.light #menu-btn.open span {
    background-color: #000 !important;
}

#navbar-menu.show-menu {
    right: 0 !important;
    opacity: 1;
    transition: all .5s ease;
}

.theme-toggle {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 80px;
    height: 30px;
}

.toggle-base {
    width: 100%;
    height: 100%;
    background-color: #1a202c;
    border-radius: 20px;
    border: 1px solid white;
}

.theme-toggle-btn {
    width: 40px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #2d3748;
    border-radius: 20px;
    border: 1px solid white;
    z-index: 999;
    transition: all .5s ease;
    cursor: pointer;
}

.light {
    background-color: #fff;
    border: 1px solid #000;
}

.theme-toggle .light .theme-toggle-btn {
    right: 39.5px;
    transition: all .5s ease;
}

.day-icon {
    right: 5px;
    top: -1px;
    font-size: 24px;
    color: #c0a400;
}

.night-icon {
    left: 10px;
    top: -2px;
    font-size: 24px;
    color: #582a54;
}

#form-section .form-check-input {
    border: 2px solid #b255aa;
}

#form-section .form-check-input:checked {
    background-color: #b255aa !important;
}

#menu-btn {
    width: 40px;
    height: fit-content;
    position: relative;
    cursor: pointer;
}

#menu-btn span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#menu-btn > *:not(:last-child) {
    margin-bottom: 7px;
}

#menu-btn.open span:nth-child(1) {
    -webkit-transform: rotate(45deg), translate(10px, 10px);
    -moz-transform: rotate(45deg), translate(10px, 10px);
    -o-transform: rotate(45deg), translate(10px, 10px);
    transform: rotate(45deg) translate(10px, 10px);
}

#menu-btn.open span:nth-child(2) {
    opacity: 0;
}

#menu-btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    -moz-transform: rotate(-45deg) translate(5px, -5px);
    -o-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-item {
    border-right: 5px solid white;
    cursor: pointer;
    transition: all .5s ease;
    color: inherit;
}

.menu-item:hover {
    color: #b255aa;
    border-color: #b255aa;
    transition: all .5s ease;
}

@media only screen and (max-width: 768px) {
    #navbar-menu {
        width: 230px;
    }

    footer .w-85 {
        width: 100%;
    }

}
