/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.2.1.1735536421
Updated: 2024-12-30 05:27:01

*/


.notification {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    margin-bottom: 50px;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    margin-bottom: 50px;
}

.notification {
    animation: slide-down 0.5s ease-out forwards;
}

@keyframes slide-down {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
    .form-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        max-width: 800px;
        margin: auto;
        font-family: Arial, sans-serif;
    }

    .form-container div {
        flex: 1 1 calc(50% - 20px); /* Two columns with space between */
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .form-container label {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-container input,
    .form-container textarea,
    .form-container button, 
    .form-container select {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        width: 100%;
    }

    .form-container textarea {
        resize: vertical;
    }

    .form-container button {
        background-color: #ef5743;
        color: white;
        border: none;
        cursor: pointer;
        padding: 15px;
        font-size: 16px;
        text-align: center;
    }

    .form-container button:hover {
        background-color: #ef5743;
        opacity: .7;
    }

    .form-container .full-width {
        flex: 1 1 100%; /* Full-width element */
    }

    @media (max-width: 600px) {
        .form-container div {
            flex: 1 1 100%; /* Full-width on smaller screens */
        }
    }


    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #fff !important;
        border: 1px solid #EE6C4D !important;
        border-radius: 4px;
        box-sizing: border-box;
        display: inline-block;
        margin-left: 5px;
        margin-top: 5px;
        padding: 0;
        padding-left: 20px;
        position: relative;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
        white-space: nowrap;
        color: #EE6C4D;
        box-sizing: unset;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        background-color: transparent;
        border: none;
        border-right: 1px solid transparent;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        color: #999;
        cursor: pointer;
        font-size: 1em;
        font-weight: bold;
        padding: 0 4px;
        position: absolute;
        left: 0;
        top: 0;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
        background-color: transparent !important;
        color: #fff;
        outline: none;
        box-shadow: unset !important;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
        box-shadow: unset !important;;
    }

    .tutor-reviews .review-header {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .tutor-reviews .user-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .userinfo-rating {
        display: flex;
        justify-content: space-between;
    }

    .stars {
        display: inline-block;
        vertical-align: middle;
    }
    
    .star {
        font-size: 20px;
        color: #ccc; /* Unfilled star color */
    }
    
    .star.filled {
        color: #FFD700; /* Filled star color */
    }
    .review-right-side-content{
        text-align: right;
    }
    
    .tutor-reviews .review-rating {
        margin: 5px 0;
       
    }