@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


/* #region: Global */
    .raleway {
        font-family: "Raleway", sans-serif;
    }
    :root {
        --color-gray-very-light: #f6f6f6;
        --color-gray-light: #E0E0E0;
        --color-gray: #9E9E9E;
        --color-gray-dark: #6D6D6D;

        --color-primary: #4CAF50;
        --color-primary-dark: #388E3C;

        --color-deep-green: #0E1E16;
        --color-dark-green: #09341F;
        --color-bg-dark: #1A1A1A;
        --color-bg-dark-alt: #1E1E1E;

        --color-red: #dd0505;
        --color-white: #ffffff;
        --color-black: #000000;

        --color-primary-opacity: rgba(41, 255, 152, 0.2);
        --color-gold: #FFAE4C;
        --color-gold-opacity: rgba(255, 198, 29, 0.2);
    }
    body {
        background-color: var(--color-gray-very-light);
        font-family: "Poppins", sans-serif;
    }
    h1, h2, h3, h4, h5, h6, p {
        margin-bottom: 0!important;
    }
    a, a:hover {
        text-decoration: none!important;
    }
    .form-control:focus, .form-select:focus, .form-check-input:focus {
        box-shadow: none!important;
        outline: none!important;
    }
    .form .error-message {
        color: var(--color-red);
        font-weight: 500;
        font-size: 14px;
        margin-top: 2px;
    }
    .form .asterisk {
        color: var(--color-red);
        margin-left: 3px;
    }
    .textarea {
        height: initial!important;
    }
    ::placeholder {
        color: var(--color-bg-dark-alt)!important;
    }
    ::-webkit-input-placeholder {
        color: var(--color-bg-dark-alt)!important;
    }
    ::-ms-input-placeholder {
        color: var(--color-bg-dark-alt)!important;
    }
/* #endregion */


/* #region: Navbar - Completed */
    .navbar-fluid {
        background: var(--color-deep-green);
    }
    .navbar-fluid .sidebar-icon {
        display: none;
    }
    .navbar {
        padding: 0;
    }
    .navbar .navbar-brand {
        padding: 0;
        margin: 0;
    }
    .navbar .logo {
        height: 80px;
        object-fit: cover;
    }
    .navbar .navbar-toggler {
        border: none;
    }
    .navbar .nav-item {
        margin-left: 40px;
    }
    .navbar .nav-link {
        padding: 0!important;
        font-size: 17px;
        color: var(--color-white);
        transition: all 0.3s;
        &:hover {
            font-weight: 600;
            transition: all 0.3s;
        }
    }
    .navbar .nav-link.active {
        color: var(--color-white);
        font-weight: 600;
    }
    .navbar .nav-item:last-child {
        margin-left: 0px;
    }
    .navbar .register-button {
        background-color: var(--color-primary);
        border: 1px solid transparent;
        color: var(--color-white);
        font-size: 18px;
        font-weight: 500;
        padding: 10px 30px!important;
        margin-left: 20px;
        transition: all 0.3s;
        &:hover {
            background-color: var(--color-primary-dark);
            transition: all 0.3s;
        }
    }
    .navbar .login-button {
        border: 1px solid var(--color-primary);
        font-size: 18px;
        font-weight: 500;
        color: white;
        padding: 10px 30px!important;
        transition: all 0.3s;
        &:hover {
            background-color: var(--color-primary-dark);
            border: 1px solid var(--color-primary-dark);
            color: var(--color-white);
            transition: all 0.3s;
        }
    }
    .navbar .dropdown {
        margin-left: 40px!important;
        cursor: pointer;
    }
    .navbar .dropdown .profile {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .navbar .dropdown .profile .profile-image {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 50%;
    }
    .navbar .dropdown .profile .name {
        color: var(--color-white);
        font-size: 15px;
        font-weight: 500;
    }
    .navbar .dropdown .profile-dropdown-menu {
        border: none;
        font-size: 15px;
        left: -5%;
        top: 110%;
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        background-color: var(--color-gray-light);
    }
    .navbar .dropdown .dropdown-menu .dropdown-item {
        font-size: 15px;
        color: var(--color-bg-dark-alt);
        padding: 15px;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        &:hover {
            background-color: var(--color-primary-dark);
            color: var(--color-white);
            transition: all 0.3s;
        };
        &:hover > form .log-out {
            color: var(--color-white);
            transition: all 0.3s;
        };
    }
    .navbar .dropdown .dropdown-menu i {
        font-size: 20px;
        padding-right: 8px;
    }
    .navbar .dropdown .dropdown-menu .log-out {
        border: none;
        background-color: transparent;
        padding: 0;
        font-size: 15px;
        display: flex;
        align-items: center;
    }
/* #endregion */


/* #region: Footer - Completed */
    .footer {
        background-color: var(--color-deep-green);
        padding-top: 2%;
        margin-top: 4%;
    }
    .footer .top {
        margin-bottom: 40px;
    }
    .footer .top .text {
        font-size: 40px;
        color: var(--color-white);
    }
    .footer .bottom {
        margin-bottom: 35px;
    }
    .footer .bottom .title {
        font-size: 20px;
        font-weight: 500;
        color: var(--color-white);
        padding-bottom: 15px;
        text-decoration: underline;
    }
    .footer .bottom ul {
        list-style-type: none;
        padding: 0;
        margin-bottom: 0;
    }
    .footer .bottom ul li {
        margin-bottom: 15px;
    }
    .footer .bottom ul li:last-child {
        margin-bottom: 0;
    }
    .footer .bottom ul li a {
        font-size: 16px;
        color: var(--color-white);
    }
    .footer hr {
        border: 1px solid var(--color-gray-light);
        margin: 0!important;
    }
    .footer .copyright {
        padding: 25px 0;
    }
    .footer .copyright .logo {
        height: 40px;
        object-fit: cover;
    }
    .footer .copyright .text {
        font-size: 14px;
        color: var(--color-white);
    }
/* #endregion */


/* #region: Notification - Completed */
    .notification-modal {
        text-align: center;
    }
    .notification-modal .modal-body {
        padding: 30px;
    }
    .notification-modal .notification-title {
        font-size: 24px;
        font-weight: 600;
        padding-bottom: 10px;
        color: var(--color-bg-dark-alt);
    }
    .notification-modal .notification-description {
        font-size: 16px;
        color: var(--color-bg-dark-alt);
    }
    .notification-modal .tick-icon {
        font-size: 35px;
        color: var(--color-primary-dark);
    }
    .notification-modal .close-icon {
        font-size: 35px;
        color: var(--color-red);
    }
    .notification-modal .triangle-icon {
        font-size: 35px;
        color: var(--color-red);
    }
    .notification-modal .close-button {
        border: 1px solid var(--color-bg-dark-alt);
        font-size: 14px;
        font-weight: 600;
        border-radius: 0;
        color: var(--color-bg-dark-alt);
        margin-top: 25px;
        transition: all 0.3s;
        &:hover {
            background-color: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
            color: var(--color-white);
            transition: all 0.3s;
        }
    }
    .notification-modal .buttons {
        display: flex;
        align-items: center;
        margin-top: 25px;
        justify-content: center;
        gap: 20px;
    }
    .notification-modal .cancel-button {
        font-size: 16px;
        font-weight: 600;
        border-radius: 0;
        border: none;
        color: var(--color-bg-dark-alt);
        transition: all 0.3s;
        &:hover {
            font-weight: 700;
            transition: all 0.3s;
        }
    }
    .notification-modal .modal-delete-button {
        background-color: var(--color-red);
        border: 1px solid var(--color-red);
        font-size: 16px;
        font-weight: 600;
        border-radius: 0;
        color: var(--color-white);
        width: 200px;
        height: 60px;
        transition: all 0.3s;
        &:hover {
            background-color: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
            transition: all 0.3s;
        }
    }
    .notification-modal .modal-delete-button .delete-icon {
        padding-right: 5px;
    }
/* #endregion */


/* #region: Responsive - Completed */
    @media (width < 1401px) {
        .navbar {
            padding: 5px 0;
        }
        .navbar .logo {
            height: 60px;
        }
        .navbar .nav-link {
            font-size: 15px;
        }
        .navbar .nav-item {
            margin-left: 30px;
        }
        .navbar .login-button {
            font-size: 16px;
            padding: 10px 20px!important;
        }
        .navbar .register-button {
            font-size: 16px;
            padding: 10px 20px!important;
            margin-left: 15px;
        }
    }
    @media (width < 1151px) {
        .footer .top {
            margin-bottom: 25px;
        }
        .footer .top .text {
            font-size: 30px;
        }
        .footer .bottom {
            margin-bottom: 25px;
        }
        .footer .bottom .title {
            font-size: 17px;
            padding-bottom: 10px;
        }
        .footer .bottom ul li {
            margin-bottom: 10px;
        }
        .footer .bottom ul li a {
            font-size: 15px;
        }
        .footer .copyright {
            padding: 10px 0;
        }
    }
    @media (width < 992px) {
        .navbar {
            padding: 0;
        }
        .navbar .logo {
            height: 60px;
        }
        .navbar .navbar-toggler {
            padding: 0;
            &:focus {
                box-shadow: none!important;
            }
        }
        .navbar .navbar-toggler .icon {
            color: var(--color-gray-light);
            font-size: 35px;
            -webkit-text-stroke: 0.5px;
        }
        .navbar .navbar-collapse {
            position: absolute;
            top: 60px;
            right: 0;
            width: 300px;
            background-color: var(--color-deep-green);
            z-index: 1050;
            padding: 20px 0;
            transition: all 0.3s;
        }
        .navbar .navbar-nav {
            gap: 10px;
        }
        .navbar .nav-item {
            margin-left: 0!important;
            margin-right: 0!important;
        }
        .navbar .nav-link {
            color: var(--color-white);
            font-size: 16px;
            padding: 10px!important;
        }
        .navbar .login-button {
            font-size: 18px;
            padding: 10px 30px!important;
            margin-bottom: 10px;
        }
        .navbar .register-button {
            font-size: 18px;
            padding: 10px 30px!important;
            margin-left: 0;
        }
        .navbar .dropdown .profile .name {
            display: none;
        }
        .navbar .dropdown .profile {
            gap: 0;
            justify-content: center;
        }
        .navbar .dropdown .profile-dropdown-menu {
            left: -95%;
            position: absolute;
        }
    }
    @media (width < 768px) {
        .navbar .navbar-nav {
            gap: 5px;
        }
        .navbar .navbar-collapse {
            width: 220px;
        }
        .navbar .nav-link {
            font-size: 15px;
        }
        .navbar .dropdown .profile-dropdown-menu {
            left: -100%;
        }

        .footer {
            margin-top: 5%;
            padding-top: 3%;
        }
        .footer .top {
            margin-bottom: 20px;
        }
        .footer .top .text {
            font-size: 20px;
        }
        .footer .bottom {
            margin-bottom: 15px;
        }
        .footer .bottom .title {
            font-size: 15px;
            padding-bottom: 5px;
        }
        .footer .bottom ul li {
            margin-bottom: 5px;
        }
        .footer .bottom ul li a {
            font-size: 14px;
        }
        .footer .copyright .text {
            font-size: 12px;
        }

        .notification-modal .modal-body {
            padding: 20px;
        }
        .notification-modal .tick-icon {
            font-size: 30px;
        }
        .notification-modal .notification-title {
            font-size: 20px;
            padding-bottom: 5px;
        }
        .notification-modal .notification-description {
            font-size: 14px;
        }
        .notification-modal .close-button {
            font-size: 13px;
            margin-top: 15px;
        }
        .notification-modal .buttons {
            margin-top: 15px;
            gap: 15px;
        }
        .notification-modal .cancel-button {
            font-size: 13px;
        }
        .notification-modal .modal-delete-button {
            font-size: 13px;
            width: 160px;
            height: 45px;
        }
    }
    @media (width < 481px) {
        .navbar .navbar-toggler .icon {
            font-size: 30px;
        }
    }
    @media (width < 396px) {
        .footer .top .text {
            font-size: 17px;
        }
    }
/* #endregion */