@tailwind base;
@tailwind components;
@tailwind utilities;

/* Переопределяем базовые стили, оставляя их пустыми */
@layer base {
    /* Оставляем пустым, чтобы убрать базовые стили Tailwind */
}

:root {
    --accent-color: #1a40a8;
    --grey: #FAFAFA;
    --grey-stroke: rgba(214, 214, 214, 0.36);
    --black: #000000;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Red Hat Text', sans-serif;
    background-color: #F6F6F6;
}

a {
    color: #00B7FF;
}

* {
    padding: 0;
    margin: 0;
}

.displaytext {
    font-family: 'Red Hat Display', sans-serif;
    user-select: none;
    cursor: pointer;
}

.mono {
    font-family: 'Red Hat Mono', monospace;
}


header {
    padding-top: 10px;
    display: flex;
    width: 100%;
    background-color: #F6F6F6;
    box-sizing: border-box;
    justify-content: space-between;
    vertical-align: middle;
    padding-bottom: 10px;
    border-bottom: 2px solid #BBBBBB;
}

#top_menu_holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_menu_item {
    color: #000;
    font-size: 16px;
    text-align: center;
    margin: 0 20px;
    cursor: pointer;
    opacity: 0.95;
}

.btn_auth {
    height: 47px;
    width: 140px;
    background-color: transparent;
    border: 2px solid #000000;
    text-align: center;
    margin-right: 15px;
    font-weight: bold;
    cursor: pointer;
    color: #000000;
    font-family: "Red Hat Display";
    font-size: 17px;
}

.btn_auth:hover {
    background-color: #4169E1;
    transition: background-color 1s ease;
}

.accent {
    background-color: #4169E1;
    border: 2px solid #4169E1;
    color: white;
}


.wide {
    height: 67px;
    width: 270px;
    font-weight: bold;
    font-size: 23px;
}

.fullwide {
    height: 57px;
    width: 100%;
    font-weight: bold;
    margin-top: 5px;
    font-size: 23px;
}

.header_text {
    margin: auto 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Red Hat Display";
    margin-left: 40px;
}

nav a:hover {
    color: #ddd;
}

.image-section {
    max-width: 40%;
    max-height: 40%;
    flex-shrink: 0;
    width: auto;
    height: 40%;
}

.text-section {
    width: 65%;
    padding-right: 15%;
}

.main_text {
    color: #030303;
    font-family: "Red Hat Display";
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.main_description {
    color: rgba(3, 3, 3, 0.67);
    font-family: "Red Hat Text";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

main {
    display: flex;
    width: 80%;
    margin: auto;
    gap: 2rem;
    background-color: #F6F6F6;
    padding: 5rem;
}

.main_adv_icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    fill: #FFD900;
}

.main_adv_text {
    color: rgba(0, 0, 0, 0.76);
    font-family: "Red Hat Text";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin: auto;
    margin-left: 20px;
}

.item_feature {
    display: flex;
    margin-top: 15px;
    vertical-align: middle;
}

.section_screenshots {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding-top: 60px;
}

.section_features {
    width: 80%;
    margin: auto;
    height: auto;
    padding-top: 60px;
    padding: 20vh 0;

}

.title_screenshots {
    color: #030303;
    font-family: 'Red Hat Mono', monospace;
    font-size: 40px;
    margin: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title_features {
    color: #030303;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 27px;
    margin: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title_features_pricing {
    margin-left: 100px !important;
}

.sub_title {
    color: #151515;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 23px;
    margin: 0 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.scrollable-container {
    display: flex;
    overflow-x: scroll;
    margin-top: 10vh;
    white-space: nowrap;
    cursor: grab;
}

.scrollable-container:active {
    cursor: grabbing;
}

.item_screenshot {
    flex: 0 0 auto;
    margin-right: 10px; /* Spacing between items */
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}

.image-container p {
    width: 100%;
    text-align: center;
    margin-bottom: 10px; /* Spacing between text and image */
    font-family: 'Red Hat Mono', monospace;
    font-weight: 700;
}

.item_screenshot img {
    max-height: 60vh; /* Limit image height to 60% of viewport height */
    width: auto; /* Keep original aspect ratio */
    display: block;
}

.item_screenshot .flag {
    width: 50px;
    height: 50px;
    background-size: cover; /* This ensures the image covers the entire element */
    border-radius: 50%; /* This makes it rounded */
    margin-bottom: 20px;
}

.cta-container {
    background-color: #f7f8fa; /* Light grey background */
    text-align: center; /* Center the text */
    padding: 54px 0; /* Padding above and below the text */
    border-radius: 8px; /* Rounded corners */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); !* Subtle shadow *!*/
    border: 2px solid rgba(0, 0, 0, 0.18);
    margin: 20px; /* Margin around the container */
}

.cta-container h2 {
    color: #333; /* Dark grey color for the text */
    font-size: 30px; /* Size of the heading */
    margin-bottom: 24px; /* Space below the heading */
}


#contact_us {
    background-color: transparent; /* Green background */
    color: #474747;
    font-weight: 500;
}

/* Adjustments for mobile screens */
@media screen and (max-width: 600px) {
    .buttons button {
        display: block; /* Stack buttons vertically */
        width: 80%; /* Make buttons take up most of the container width */
        margin: 10px auto; /* Center buttons horizontally */
    }
}

/* Styling for WebKit browsers (e.g., Chrome, Safari) */
.scrollable-container::-webkit-scrollbar {
    height: 5px; /* Adjust as needed for scrollbar thickness */
    border-radius: 2.5px; /* Half the height to make it rounded */
}

.scrollable-container::-webkit-scrollbar-track {
    background: transparent; /* Hide the track */
}

.scrollable-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.0); /* Semi-transparent black */
    border-radius: 2.5px; /* Rounded corners */
}

/* Styling for Firefox */
.scrollable-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.0) transparent;
}


.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.item_service {
    flex: 1;
    margin: 10px;
    display: flex;
    flex-direction: column;
    background-color: #ececec;
    border-radius: 0px;
    border: 3px solid #474747;
    overflow: hidden;
    transition: transform 0.3s;
}

.item_service:hover {
    transform: scale(1.05);
}

.item_service img {
    width: 100%;
    padding-top: 30px;
    display: block;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.item-content a {
    color: #151515;
}

.item-content p {
    flex: 1;
}

@media (max-width: 768px) {
    .item_service {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .item_service {
        flex-basis: 100%;
    }
}

.action_button {
    height: 48px;
    width: auto;
    border-radius: 9px;
    display: block;
    font-size: 15px;
    line-height: 48px;
    vertical-align: middle;
    text-align: center;
    background-color: #4169E1;
    font-family: "Red Hat Text", sans-serif;
    outline: none;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 60px;
    border: none;
    overflow: visible;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.011em;
    font-weight: 500;
    min-width: 150px;
    text-decoration-skip-ink: auto;
    padding-left: 11px;
    padding-right: 11px;
    color: rgb(255, 255, 255);
}

.action_button:hover {
    background-color: rgb(55, 88, 201);;

}

.card {
    transition: 0.3s;
    width: 123px;
    height: 144px;
    flex-shrink: 0;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid #D6D6D6;
    background: linear-gradient(0deg, #FAFAFA 0%, #FAFAFA 100%), #FFF;
}

/* Add padding and a black border to the active card */
.card:hover, .card:active, .card:focus {
    border: 1px solid #aeb9dc;
}

.card_selected {
    border: 1px solid var(--accent-color);
}

.card-title {
    font-size: 1.25em;
    margin-bottom: .5em;
    text-align: center;
}

.card-text {
    margin-top: .5em;
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    color: #333;
}

.cards_holder {
    display: flex;
    margin-bottom: 15px;
}

header {
    background-color: #f8f8f8;
    position: relative;
    height: 60px;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

#logo {
    font-weight: bold;
    font-size: 20px;
    font-family: "Red Hat Display";
}

#logo_light {
    font-size: 20px;
    font-weight: 400;
}

/*nav ul {*/
/*    list-style: none;*/
/*    display: flex;*/
/*  TODO idk  margin: 0;*/
/*    padding: 0;*/
/*    margin-left: auto;*/
/*    position: absolute;*/
/*    right: 10px;*/
/*}*/

.mega-menu {
    position: relative !important;
}

nav ul li {
    padding: 0 10px;
}

.work_nav_a {
    color: #333;
    cursor: pointer;
}

.work_nav_a:hover {
    color: #777777;
    text-decoration: underline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}


.menu ul li a:hover {
    background-color: #f9f9f9; /* Light grey background on hover */
}


/* WORKSPACE */

.workspace_layout {
    display: flex; /* Use flexbox layout */
    height: calc(100vh - 60px);; /* Full height of the viewport */
}

.workspace_menu {
    width: 250px; /* Fixed width for the menu */
    overflow: hidden; /* Hide overflow */
    display: block;
    background-color: #F6F6F6;
    font-family: Arial, sans-serif; /* Font family */
    padding: 0 !important; /* Remove padding */
    flex-shrink: 0;
}

/* menu.css */
.workspace_menu ul {
    position: unset;
    list-style: none; /* Remove list bullets */
    margin: 0; /* Remove margin */
    display: block;
    padding: 0 !important; /* Remove padding */
}

.workspace_menu ul li {
    position: unset;
    display: block;
    padding: 0;
    border-bottom: 2px solid #f1f1f1; /* Separator between menu items */
}

.workspace_menu ul li a {
    position: unset;
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Align items vertically */
    text-decoration: none; /* Remove underline from links */
    color: #474747; /* Dark grey color for the text */
    font-family: "Red Hat Display", sans-serif;
    font-weight: 500;
    padding: 15px; /* Padding inside the links */
    transition: background-color 0.3s; /* Transition for the hover effect */
}

.workspace_menu ul li a:hover {
    text-decoration: none;
    background-color: #ffffff;
}

.workspace_menu ul li a i {
    position: unset;
    margin-right: 10px; /* Space between icon and text */
    display: inline-block; /* Allow width and height to take effect */
}

.workspace_content {
    flex-grow: 1; /* Take up the remaining space */
    padding: 20px; /* Padding around the content */
    overflow-y: auto; /* Scrollable content */
    height: 100%;
    padding-left: 80px;
    background-color: white;
}


.app_menu_select {
    border: none;
    outline: none;
    height: 70px;
    font-weight: bold;
    width: 100%;
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
    padding: 0 20px;
    background-color: #F6F6F6;
    border-bottom: 2px solid #BBBBBB;
    -webkit-appearance: none;
    background-image: url("/products/localize/app/icons/ic_arrow_botton.svg");
    background-position: right center; /*Positioning*/
    background-repeat: no-repeat;
    border-right: 16px solid transparent

}

.workspace_title {
    color: #000;
    font-family: "Red Hat Text", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    padding-bottom: 20px;
    margin-top: 20px;
}

.app_workspace_label {
    color: #000;
    font-family: "Red Hat Text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: normal;
    display: block;
    text-align: left;
}

.workspace_input {
    border-radius: 8px;
    border: 1px solid #D6D6D6 !important;
    background: linear-gradient(0deg, #fff 0%, #fff 100%), #fff;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    height: 39px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 15px;
    padding: 5px 8px !important;
}

.btn_hint {
    font-size: 15px;
    font-weight: 400;
    color: #5d5d5d;
}

.workspace_btn {
    font-family: "Red Hat Text", sans-serif;
    font-size: 15px;
    margin-top: 20px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.workspace_input_label {
    line-height: 39px;
    vertical-align: middle;
    width: 100%;
    text-align: start;
    color: #000;
    font-family: "Red Hat Text", sans-serif;
    font-size: 13px;
    padding: 0 20px;
    cursor: pointer;
}


.workspace_body {
    overflow-y: hidden;
    overflow-x: hidden;
    background: #FFF;
}

.workspace_select {
    font-size: 13px !important;
    font-weight: 500;
    padding: 0 20px !important;
    border-right: 16px solid transparent !important;
}

.output_language {
    width: 40vw;
    padding: 10px 16px;
    height: auto;
    font-size: 13px;
    font-weight: 500;
}

.horizontal_scroll_view {
    width: 40vw;
    overflow-x: auto;
    display: flex;
    flex-wrap: wrap;

}

.btn_top {
    text-align: center;
    line-height: 39px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
    padding: 0;
    margin-bottom: 8px;
    flex-shrink: 0;
    width: auto;
    width: 20%;
    cursor: pointer;
    padding: 0 !important;
}

.btn_top:hover {
    background-color: white;
}

/* Scope styles to the dialog by using the .dialog class */
.dialog {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto; /* Ensure the whole dialog is scrollable if needed */
}

.dialog .dialog-content {
    background: white;
    padding: 20px;
    width: 300px;
    margin: 100px auto;
    border-radius: 5px;
    text-align: left; /* Align text to the left */
    max-height: 80%; /* Set maximum height */
    overflow-y: auto; /* Make it scrollable */
}

/* Style for individual checkboxes and labels within the form */
.dialog #language-form {
    padding-left: 20px; /* Align checkboxes with dialog padding */
}

.dialog h1 {
    font-family: "Red Hat Text", sans-serif;
}


.dialog .dialog-content {
    background: white;
    padding: 20px;
    width: 300px;
    margin: 100px auto;
    border-radius: 5px;
    text-align: left;
    position: relative; /* Needed for absolute positioning of buttons */
}

.dialog .language-list {
    max-height: 300px; /* Adjust to your preference */
    overflow-y: auto;
    margin-bottom: 20px; /* Space between the list and the buttons */
}

.dialog .dialog-buttons {
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center; /* Center buttons in this container */
}

.dialog #language-form {
    padding: 5px; /* Adjust padding as needed */
    background-color: #F6F6F6;
}

.dialog #language-form label {
    padding-left: 0; /* Align text after the checkbox */
    margin-left: 5px; /* Align with the title */
    display: inline-block;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.dialog button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: var(--accent-color);
    color: white;
    font-family: "Red Hat Text", sans-serif;
    cursor: pointer;
    margin-top: 10px;
    width: calc(100% - 40px); /* Subtract the padding from the width */
}

.dialog #close-button {
    background-color: #777777;
}

.dialog button:hover {
    background-color: var(--accent-color);
}

.language-dialog {

}


.footer {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    font-family: "Red Hat Text", sans-serif;
    padding: 20px 0;
    margin-top: auto; /* Pushes the footer to the bottom */
}

.fcontainer {
    width: 80%;
    margin: 0 auto;
    max-width: 960px;
}

.footer a {
    color: #151515;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.loader {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 8px solid;
    border-color: #E4E4ED;
    border-right-color: #787878;
    animation: s2 1s infinite linear;
}

.loader_small {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 8px solid;
    border-color: #E4E4ED;
    border-right-color: #787878;
    margin-top: 30px;
    margin-bottom: 60px;
    margin-left: 20px;
    animation: s2 1s infinite linear;
}

.editable_area {
    opacity: 1;
}

@keyframes s2 {
    to {
        transform: rotate(1turn)
    }
}

#guide {
    display: none;
}

.archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 1px solid #CBCBCB;
    width: 100%;
    margin-top: -5px;

}

.archive-item-title {
    font-size: 16px;
    font-weight: 500;
}

.archive-item-status {
    font-weight: 500;
}

label {
    font-weight: 500;
}

.archive-item-date {
    font-size: 13px;
    opacity: 0.5;
    font-weight: 400;
}

.archive-item-type {
    background-color: #4169E1;
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
}

.archive-item-btn {
    cursor: pointer;
}

.archive-item-btn-cancel {
    color: #4169E1;
    font-size: 17px;
    cursor: pointer;
}

.archive-item-btn-cancel:hover {
    text-decoration: underline;
}

.jc-bs3-container {
    width: 50% !important;
    margin: auto !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 5px;
    height: 60%;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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

.file {
    margin-left: 0px;
}

.dir, .file {
    margin-left: 10px;
    cursor: pointer;
    border-radius: 4px;
    padding: 10px 5px;
    transition: background-color 0.3s;
}

.dir:hover, .file:hover {
    background-color: #f0f0f0;
}

#cb_save_for_future {
    font-size: 15px;
    margin-top: 10px;
    cursor: pointer;
}

#save_path {
    cursor: pointer;
}

.release_notes_area {
    font-family: "Red Hat Text", sans-serif;
    color: black;
    width: 150%;
    outline: gray;
    height: 30vh;
}

.workspace_input:focus {
    border: 1px solid #1a40a8;
    box-shadow: rgba(65, 105, 225, 0.2) 0px 8px 24px;
}

.small_area {
    height: 30px;
}

.medium_area {
    height: 200px;
}

.large_area {
    height: 500px;
}

.figma_plugin_ad {
    display: flex;
    cursor: pointer;
    vertical-align: middle;
    justify-items: center;
    height: auto;
    align-items: center;
    padding: 15px;
}

.menu_section_title {
    font-family: "Red Hat Display", sans-serif;
    margin: 10px;
    display: block;
    border-bottom: 1px solid var(--grey-stroke);
    padding-bottom: 10px;
    padding-top: 10px;
}

.app_settings_input {
    border: 1px solid #d6d6d6;
    border-radius: 16px;
    display: block;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 400;
    font-family: "Red Hat Text", sans-serif;
    color: #151515;
    padding: 5px 8px;
}

.item_store {
    width: 100%;
    height: auto;
    background-color: var(--grey);
    border: 1px solid var(--grey-stroke);
    border-radius: 8px;
    margin-top: 20px;
}

.item_store_text {
    margin: auto;
    margin-bottom: 2px;
    display: block;
    border: 1px solid var(--grey-stroke)
}

.item_store_holder {
    padding: 20px;
}

.item_store_checkbox {
    height: 20px;
    width: 20px;
    cursor: pointer;
    display: inline-block;
}

.item_store_checkbox_label {
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-left: 10px;
    cursor: pointer;
}

.item_store_checkbox_holder {
    margin: 20px;
    display: flex;
}

.store_connect {
    height: 50px;
    border-radius: 16px;
    margin-top: 20px;
    padding: 0 20px;
    background-color: #F6F6F6;
    border: 1px solid #d6d6d6;
    display: flex;
    align-content: space-between;
    margin-bottom: 20px;
    align-items: center;
    vertical-align: middle;
}

#connect_action {
    cursor: pointer;
    color: #4169E1;
    font-size: 14px;
    font-weight: 500;
}

.select {
    padding: 10px;
    margin-bottom: 20px;
    height: 60px;
    font-family: "Red Hat Text", sans-serif;
    border: 1px solid #D6D6D6;
    box-sizing: border-box;
    background: linear-gradient(0deg, #FAFAFA 0%, #FAFAFA 100%), #D9D9D9;
    border-radius: 16px;
    font-size: 16px;
}

.banner {
    width: 100%;
    height: auto;
    background-color: #F8F8F8;
    box-sizing: border-box;
    padding: 20px;
    cursor: default;
}

.banner_check {
    display: flex;
    justify-items: center;
    vertical-align: middle;
}

.banner_check h2 {
    font-size: 25px;
    font-weight: 550;
}

#status_success {
    font-size: 17px;
    font-weight: 300;
}

.char-counter {
    font-size: 0.9em;
    color: grey;
    margin-bottom: 10px;
    text-align: right;
    font-weight: 300;
    margin-top: 2px;
}

.viewer_text::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.viewer_text::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the track */
}

.viewer_text::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 5px;
}

.viewer_text::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color when hovered */
}

table {
    border-collapse: collapse;
    width: 150%;
    margin-top: 20px;
    table-layout: fixed;

}

table, th, td {
    border: 1px solid grey;
    word-wrap: break-word;

}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.site-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-section {
    margin: 10px 20px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-section a {
    color: #a9a9a9;
    text-decoration: none;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.feature_description {
    margin-left: 100px;
    font-size: 22px;
    width: 60%;
}

#how_it_works_holder {
    margin-top: 30px;
}

.how_it_works_item_text {
    box-sizing: border-box;
    padding: 0 20px;
    text-align: center;
    white-space: normal;
}

.how_it_works_item_header {
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .feature_description {
        width: unset;
    }
}

@media (max-width: 480px) {
    .feature_description {
        width: unset;
    }
}

.feature_description_h2 {
    margin-left: 100px;
    font-size: 25px;
}

.desktop-only-content {
}

.top_menu_item_li {
}

.button_action {
}

@media screen and (max-width: 768px) {
    .desktop-only-content {
        display: none;
    }

    .video-player {
        overflow: hidden;
        margin-right: auto !important;
        margin-left: auto !important;
        width: 90vw !important;
        display: block;
        max-width: 90vw !important;
    }

    .video-list {
        width: 90vw !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .top_menu_item_li {
        margin-bottom: 20px;
    }

    .top_menu_item {
        padding: 20px;
    }

    .title_screenshots {
        text-align: center;
        width: 90%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .title_features {
        text-align: center;
        width: 90%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .services-container {
        width: 90% !important;
        margin: auto;
    }

    .section_features {
        width: 100% !important;
    }

    .button_action {
        width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    main {
        width: 100%;
        padding: 1rem;
    }

    .text-section {
        width: 80%;
    }

    .title_features_pricing {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .sub_title {
        margin: auto !important;
        width: 90%;
        text-align: center;
    }

    .feature_description {
        margin: auto !important;
        width: 90%;
        text-align: center;
        font-size: 19px;
    }

    .feature_description_h2 {
        margin: auto !important;
        width: 90%;
        text-align: center;
    }

    .warn_container {
        margin-left: 30px !important;
    }

    .panel {
        margin-left: 30px !important;
    }

    .pricing_empty {
        width: 10px !important;
        display: inline-block !important;
    }

    .feature_description {
        margin-left: 30px;
    }

    .feature_description_h2 {
        margin-left: 30px !important;
    }

    .feature_description_h2_right {
        margin-right: 30px !important;
    }

    .space_how_to {
        width: 5px !important;
    }
}

.pricing_empty {
    width: 80px;
    display: inline-block;
}

.feature_description_h2 {
    margin-left: 100px;
}

.feature_description_h2_right {
    margin-right: 100px;
}

.space_how_to {
    width: 70px;
    flex-shrink: 0;
}

.feature_divider {
    height: 30vh;
}

/* Add this to your CSS file */
.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    display: none; /* Hidden by default */
}


.playlist-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.video-wrapper {
    width: 560px;
    height: 315px;
}

.video-player {
    flex-grow: 1;
    margin-top: 30px;
    box-sizing: border-box;
    margin-left: 100px;
    max-width: 60vw;
    display: block;
}

.video-list {
    display: flex; /* Use flexbox for the layout */
    flex-direction: row; /* Arrange children in a horizontal row */
    max-width: 80%; /* Container takes up to 80% of its parent's width */
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Hide vertical scrollbar that might appear due to margins */
    padding-bottom: 20px; /* Add padding to the bottom to ensure space for margin of last row thumbnails */
    margin-left: 100px;
}

.video-thumbnail {
    flex: 0 0 auto; /* Prevents the thumbnails from growing or shrinking */
    cursor: pointer;
    display: flex; /* Use flex to center the content */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    margin-right: 20px; /* Spacing between thumbnails */
    margin-top: 20px; /* Top margin for spacing from container or previous elements */
    height: 160px; /* Fixed height */
    width: 240px; /* Fixed width */
}

.video-thumbnail img {
    width: 100%;
    height: auto;
}

.video-thumbnail p {
    margin: 0;
}

.ytp-pause-overlay {
    display: none !important;
}

.ytp-pause-overlay-container {
    display: none !important;
}


/*
Mega headr
 */

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.navbar, .buttons2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}

.buttons2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}


.buttons button {
    background-color: #4169E1; /* Green background */
    border: none; /* No border */
    padding: 17px 29px; /* Padding inside the buttons */
    margin: 0 10px; /* Margin between the buttons */
    text-transform: uppercase; /* Uppercase text */
    font-size: 16px;
    font-weight: bold; /* Bold font */
    font-family: 'Red Hat Text', sans-serif;
    border-radius: 4px; /* Rounded corners for buttons */
    cursor: pointer; /* Pointer cursor on hover */
    outline: none; /* Remove outline */
    transition: background-color 0.3s; /* Transition for the background color */
    color: #FFFFFF;
}

.buttons button:hover {
    background-color: #4169E1;

}


.brand {
    font-weight: bolder;
    font-size: 1.5em;
}

.brand:hover {
    font-weight: bolder;
    color: #428aff;
}


.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    background: #428aff;
    padding: 0.5em 1.3em;
    border-radius: 16px;
    color: #fff;
}

.btn:hover {
    background: #3877db;
}

.menu-btn {
    margin-left: 1em;
    background: none;
    border: none !important;
    outline: none !important;
    display: inline-block;
}

.menu-btn span {
    font-size: 2.3em;
}

.dropdown > div, .sub-dropdown > div {
    cursor: pointer;
}

.dropdown .menu a:hover {
    color: #9b9b9b;
}

@media screen and (min-width: 800px) {
    .navbar {
        padding: 0 1.5em;
    }

    .dropdown > div {
        padding: 1.5em 1em;
    }

    .mega-menu {
        display: flex;
        justify-content: center;
    }

    .menu-btn {
        display: none;
    }

    .menu {
        background: #fff;
        top: 4.65em;
        left: 0;
        width: 100%;
        padding: 0 2em;
        overflow-y: scroll;
        transition: 0.4s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 2em;
        position: fixed;
        left: 0px;
        right: 0px;
    }

    .menu > li:first-child {
        font-size: 1.1em;
        font-weight: bold;
        margin: 0;
    }

    .sub-dropdown > div span:first-child {
        font-weight: bold;
    }

    .dropdown > div {
        border-bottom: 3px transparent solid;
        transition: 0.3s;
    }

    .dropdown:hover > div {
        border-color: #000;
    }

    .dropdown li {
        margin-bottom: 1em;
    }

    .dropdown > div span:last-child,
    .sub-dropdown > div {
        display: none;
    }

    /* Width */
    .menu::-webkit-scrollbar {
        width: 8px;
    }

    /* Track */
    .menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .menu::-webkit-scrollbar-thumb {
        background: #888;
    }

    /* Handle on hover */
    .menu::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    /* Hide menu */
    .menu {
        height: 0;
    }

    .dropdown:hover .menu {
        height: 50vh;
        padding: 2em;
    }

    .dropdown:hover .overlay {
        display: block;
    }

}

/* Responsive Design */
@media screen and (max-width: 800px) {
    .navbar {
        padding: 1em 1.5em;
    }

    .menu-container {
        background: #fff;
        position: absolute;
        top: 4.4em;
        left: 0;
        width: 100%;
        overflow-y: hidden;
        transition: 0.3s ease-in-out;
    }

    /* Width */
    .mega-menu::-webkit-scrollbar {
        width: 8px;
    }

    /* Track */
    .mega-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .mega-menu::-webkit-scrollbar-thumb {
        background: #888;
    }

    /* Handle on hover */
    .mega-menu::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .mega-menu {
        padding: 0 1em 1em 1em;
        height: 100%;
        overflow-y: scroll;
    }

    .mega-menu li {
        font-size: 1.1em;
    }

    .mega-menu li > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5em;
    }

    .menu li {
        padding: 0em;
        font-size: 1em;
        font-weight: 400;
    }

    .menu a {
        display: block;
        margin: 0.8em 0;
    }

    .menu {
        display: none;
    }

    /* Toggle class for Javascript */
    .menu-show {
        display: block;
    }

    .material-symbols-outlined {
        transition: 0.3s;
    }

    /* Toggle class for javascript */
    .icon-rotated {
        transform: rotate(90deg);
    }

    .dropdown > div, .sub-dropdown > div {
        cursor: pointer;
        padding: 0.5em;
    }

    .sub-menu {
        font-size: 0.9em;
    }

    /* Toggle class for Javascript */
    .sub-menu-show {
        display: block;
    }

    .dropdown:hover > div, .sub-dropdown:hover > div {
        background: #dbdbdb;
    }

    /* Hide menu */
    .menu-container {
        height: 0;
    }

    /* Toggle class for javascript */
    .mega-menu-show {
        height: 50vh;
    }

    .overlay {
        display: none !important;
    }
}


.overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background: rgba(0, 0, 0, 0.6); /* 60% semi-black */
    z-index: -10;
    display: none;
    transition: 0.3s;

}

.app_menu_select {
    border: none;
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    outline: none;
    height: 70px;
    font-weight: bold;
    width: 100%;
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
    padding: 0 20px;
    background-color: #F6F6F6;
    border-bottom: 2px solid #BBBBBB;
    -webkit-appearance: none;
    background-image: url("/products/localize/app/icons/ic_arrow_botton.svg");
    background-position: right center;
    background-repeat: no-repeat;
    border-right: 16px solid transparent;
}
