/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* General */
.flex {
    display: flex;
    flex-wrap: wrap;
}
.column {
    flex: 1;
}
.rov {
    flex-direction: row;    
}
.vertically-center {
    align-items: center;
}
.align-content {
    text-align: center;
}
/* Login pages */
.container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
}
.login-container {
    width: calc(50% - 10px);
    margin-right: 10px;
}
.registration-container {
    width: calc(50% - 10px);
    margin-left: 10px;
}
/* Dashboard */
.dashboard-top, .dashboard-main {
    width: 100%;
}
.dashboard-menu {
 margin: 10px 0 30px 0;
}
.dashboard-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.dashboard-menu ul li {
    display: inline-block;
    margin-right: 20px;
}
.basis-5 {
    flex-basis: 5%;
}
.basis-10 {
    flex-basis: 10%;
}
.basis-15 {
    flex-basis: 15%;
}
.basis-20 {
    flex-basis: 20%;
}
.basis-25 {
    flex-basis: 25%;
}
.gap-medium .basis-25 {
    flex: 1 1 25%; /* Flex grow, shrink, and basis */
    max-width: calc(25% - 20px); /* Adjust for the gap */
    box-sizing: border-box;
}
.basis-30 {
    flex-basis: 30%;
}
.basis-33 {
    flex-basis: 33.3333%;
}
.basis-35 {
    flex-basis: 35%;
}
.basis-40 {
    flex-basis: 40%;
}
.basis-45 {
    flex-basis: 45%;
}
.basis-50 {
    flex-basis: 50%;
}
.basis-55 {
    flex-basis: 55%;
}
.basis-60 {
    flex-basis: 60%;
}
.basis-65 {
    flex-basis: 65%;
}
.basis-70 {
    flex-basis: 70%;
}
.basis-75 {
    flex-basis: 75%;
}
.basis-80 {
    flex-basis: 80%;
}
.basis-85 {
    flex-basis: 85%;
}
.basis-90 {
    flex-basis: 90%;
}
.basis-950 {
    flex-basis: 95%;
}
.basis-100 {
    flex-basis: 100%;
}
.padding-lr {
    padding: 0 15px;
}
.gap {
    gap: 50px;
}
.gap-small {
    gap: 5px;
}
.gap-medium {
    gap: 20px;
}
.drop-area {
    background: #EDEDED;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
}
.drop-area:hover {
    background: #c7c7c7;
}
.drop-area p {
    margin-bottom: 0;
}
.row-gap {
    row-gap: 50px;
}
.column-gap {
    column-gap: 50px;
}
.mt {
    margin-top: 20px;
}
.grey {
    background: #c7c7c7;
    padding: 10px;
}
/* Video PopUp */
#open-video-popup {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.video-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.video-popup-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 700px;
    background-color: white;
    border-radius: 10px;
}

.video-popup-content iframe {
    width: 100%;
    height: 400px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
