:root {
    --toolbar-height: 195px;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
    background-image: url('/static/images/BackgroundDesign.png');
    background-size: cover;
    user-select: none;
}

.modal {
    position: fixed;
    top: 50vh;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    z-index: 1001;
    transition: visibility 0.3s, opacity 0.3s;
  }
  
  .modal.show {
    visibility: visible;
    opacity: 1;
  }
  
  .modal-content {
    font-family: 'Times New Roman', Times, serif;
    font-size: medium;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    height: 90%;
    max-height: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .modal-content > h1 {
    font-weight: lighter;
  }

  .modal-content > p {
    margin: 0;
  }

  #javascript-editor {
    width: 470px;
    height: 360px;
    margin-bottom: 10px;
  }

  .intro-icon {
    font-size: 100px;
  }

  .feedback-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }

/* Ensure iframe fits the container */
.container iframe {
    position: absolute;
    top: calc(var(--toolbar-height) + 4vh + 3vh);
    z-index: -1;
    width: 90vw; /* Make the iframe take up the full width of its parent */
    height: calc(200vh - var(--toolbar-height) - 4vh - 10vh); /* Make the iframe take up the full height of the container */
    margin: 0px;
    padding: 2vh;
    padding-right: 1vh;
    border: 1px none rgb(0, 0, 0);
    border-radius: 10px;
    /* overflow-y: auto; */
    background-color: rgb(255, 255, 255);
    /* background-size: 20px 20px;  */
    /* background-image:
      linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px); */

    box-shadow: 0px 0px 10px rgb(204, 204, 204);
}

#body-in-iframe {
    margin: 0 0 0 0px;
}

.body-in-iframe {
    margin: 0 0 0 0px;
}

.toolbar {
    position: fixed;
    top: 0px;
    width: 96vw;
    height: var(--toolbar-height);
    background-color: rgb(255, 255, 255);
    padding: 2vw;
    padding-top: 2vh;
    padding-bottom: 2vh;
    border-bottom: #000 none 1px;
    box-shadow: 0px 0px 10px rgb(204, 204, 204);
}

.main-logo {
    padding: 0px;
    margin: 0px;
    padding-right: 20px;
    width: 60px;
}

.folder-icon {
    padding: 0px;
    margin: 0px;
    /* padding-right: 20px; */
    width: 20px;
}

.file-information-container {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.file-information {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 70vh;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.file-information > * {
    margin: 0px;
    padding: 10px;
    background-color: #00000000;
    border: none;
    color: #000;
}

#file-name {
    font-weight: 400;
    font-size: 20px;
    background-color: #f0f0ff;
    border-radius: 10px 0px 0px 10px;
    padding: 10px 0px 10px 10px;
    margin-right: 0px;
    margin-left: 5px;
    text-decoration: underline;
    text-decoration-color: #ccccff;
    text-underline-offset: 7.5px;
}

#file-name:hover {
    text-decoration-color: #5555ff;
    text-underline-offset: 7.5px;
}

#file-name-type {
    font-weight: 400;
    margin-left: 0px;
    padding-left: 0px;
    padding-right: 10px;
    font-size: 20px;
    background-color: #f0f0ff;
    border-radius: 0px 10px 10px 0px;
}

#website-name {
    margin: 0px;
    padding: 0px;
    height: 80px;
}

.file-information a {
    text-decoration: none;
    color: #000;
    margin: 0px;
    margin-left: 5px;
    padding: 10px;
    border-radius: 5px;
}

.file-information a:hover {
    cursor: pointer;
    background-color: #f0f4f9;

}

.file-information button {
    text-decoration: none;
    color: #00000078;
    margin: 0px;
    margin-left: 15px;
    padding: 10px;
    border-radius: 5px;
}

/* .file-information button:hover {
    cursor: pointer;
    background-color: #f0f4f9;

} */

.save-information {
    color: red;
    font-size: 14px;
}

.save-information:hover {
    text-decoration: underline;
    cursor: pointer;
}

#loading-element {
    display: inline-block; 
    transform: rotate(0deg);
    transition: transform 0.5s ease-in-out;
}

.left > *:first-child {
    padding-left: 10px;
}

.left {
    justify-content: left;
    z-index: 1;
}

.right {
    justify-content: right;
    width: 35vh;
}

.right > * {
    background-color: #00000000;
    color: #001d35;
    border-radius: 20px;
    padding: 0px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
}

.right button:hover {
    background-color: #ffffff;
}

.right button {
    background-color: #ffffff;
    border: 3px solid black;
    color: #001d35;
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    transition: background-color 1s;
}

#logged-out button {
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    border: 3px solid #f0f0ff;
    box-shadow: 0 0 0 #000000;
    transition: border .25s;
    border-radius: 30px;
}

#logged-out button:hover {
    border: 3px solid black;
    box-shadow: 10px 10px 0px #000000;
    transition: border 1s;
}

#logged-in button {
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    border: 3px solid #f0f0ff;
    box-shadow: 0 0 0 #000000;
    transition: border .25s;
    border-radius: 30px;
}

#logged-in button:hover {
    border: 3px solid black;
    box-shadow: 10px 10px 0px #000000;
    transition: border 1s;
}

#logout-image,
#login-image,
#signup-image {
    height: 35px !important;
    padding: 0px !important;
}

#logout-image,
#login-image,
#signup-image :hover {
    height: 22px;
    padding: 0px !important;
}

.right h2 {
    background-color: #c2e7ff;
    border: none;
    color: #001d35;
    text-decoration: none;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.login-to-save {
    padding: 0px;
    margin: 0px;
    /* padding-right: 20px; */
    width: 70px;
}

.auth-buttons {
    display: flex;
    /* width: 200px; */
}

.auth-buttons >* {
    /* width: 100px; */
}

/* #logout:hover {
    background-color: #00000000;
    box-shadow: 0px 0px 10px rgb(255, 161, 161);
    color: #ff0000;
    font-size: 16px;
    transition: background-color 1s, box-shadow 1.5s, color 1.5s, font-size 1.5s;
}

#logout {
    background-color: rgb(255, 255, 255);
    color: #000000;
    font-size: 13px;
    box-shadow: none;
    text-decoration: none;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 10px;
    border: solid #5900ff;
    border-width: 0px;
    transition: background-color 1s, box-shadow 1.5s, color 1.5s, font-size 1.5s;
} */

#upgrade:hover {
    background-color: #00000000;
    box-shadow: 0px 0px 10px rgb(184, 161, 255);
    color: #aa00ff;
    font-size: 16px;
    transition: background-color 1s, box-shadow 1.5s, color 1.5s, font-size 1.5s;
}

#upgrade {
    background-color: rgb(184, 161, 255);
    color: #000000;
    font-size: 13px;
    box-shadow: none;
    text-decoration: none;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 10px;
    border: solid #5900ff;
    border-width: 0px;
    transition: background-color 1s, box-shadow 1.5s, color 1.5s, font-size 1.5s;
}

#greet {
    text-align: center;
    align-self: center;
    width: fit-content;
    padding-right: 10px;
}

.auth-buttons button {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 10px;
    margin: 2px;
}

.file-options {
    display: none;    
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.file-options button{
    border: none;
    background-color: #00000000;
    margin: 0px;
    padding: 5px;
    border-radius: 5px;
}

.file-options button:hover{
    border: none;
    background-color: #f0f4f9;
}

.context-menu {
    background-color: white;
    box-shadow: 0px 0px 8px #888888;
    width: 150px;
    height: 250px;
    position: absolute;
    z-index: 11;
    visibility: hidden;
}

.context-menu.visible {
    visibility: visible;
}

.context-menu.stay-visible {
    visibility: visible;
}

.quick-options {
    background-color: #f4f4f700;
    border-radius: 30px;
    margin-top: 0px;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 45px;
}

.quick-options button{
    border-radius: 10px;
    border: none;
    background-color: #00000000;
    margin: 0px;
    padding: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 45px;
    font-size: large;
    cursor: pointer;
}

.quick-icon {
    font-family: 'Times New Roman', Times, serif;
    padding-right: 5px;
}

.quick-image-icon {
    width: 12px;
    border: 1px solid black;
    border-radius: 2px;
}

.edit-image-icon {
    width: 30px;
    border: 1px none black;
    border-radius: 2px;
}

.quick-image-icon.changes {
    border:none;
    width: 19px;
    transform: translateY(2px);
}

.quick-image-icon.comment {
    border:none;
    width: 19px;
    transform: translateY(2px);
}

.quick-image-icon.image {
    border:none;
    width: 19px;
    transform: translateY(2px);
}

.quick-image-icon.javascript {
    border:none;
    width: 19px;
    transform: translateY(4px);
}

.quick-image-icon.download {
    border:none;
    width: 19px;
    transform: translateY(2px);
}

.quick-image-icon.deploy {
    border:none;
    width: 19px;
    transform: translateY(2px) rotate(180deg);
}

.quick-image-icon.feedback {
    border:none;
    width: 19px;
    transform: translateY(4px);
}

.quick-image-icon.triangle-border {
    border:none;
    width: 19px;
    transform: translateY(2px);
}

.quick-image-icon.circle-border {
    border-radius: 12px;
}

.menu-image-icon {
    width: 15px;
    border: 1px solid black;
    background-color: white;
    border-radius: 2px;
    padding: 2px;
    margin: 5px;
    cursor: pointer;
}

.quick-desc{
    font-size: small;
    color: rgba(0, 0, 0, 0.75);
    /* display: none; */
}

.quick-options button:hover{
    border: none;
    background-color: #f0f0f3;
}

.edit-options {
    background-color: #f4f4f4;
    border-radius: 30px;
    margin-top: 0px;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 40px;
    height: 45px;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
}

#edit-delete-button {
    background-color: red;
    color: white;
    border: 2px solid black;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 30px;
    margin-left: 20px;
    display: none;
    height: 40px;
    align-self: center;
}

#edit-container-width {
    margin-left: 20px;
}

.edit-container.number-input {
    margin-left: 10px;
    width: 60px;
}

.edit-button {
    margin: 0px;
    padding: 0px 5px;
    background-color: #f4f4f4;
    border: 1px none #cccccc;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
}
.edit-button:hover {
    background-color: #f0f0f0;
}
.color-picker {
    width: 15px;
    height: 25px;
    padding: none;
    margin: none;
    border: 2px none #ccc;
    cursor: pointer;
    display: inline-block;
    background-color: #ffffff00; /* Default color */
}

input[type="color"] {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    width: 25px; /* Set the size */
    height: 25px;
    border-radius: 20%; /* Makes it a circle */
    padding: 0;
    cursor: pointer;
    border: 2px none #000000; /* Optional: adds a border */
}

/* Remove default styling in WebKit browsers */
input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
    border-radius: 20%;
}

input[type="color"]::-webkit-color-swatch {
    border: 1px solid white;
    border-radius: 20%;
}

#edit-font-color {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

#edit-border-size {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

#edit-box-shadow-color {
    display: none;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

#edit-font-family-select {
    height: 40px;
    padding-left: 16px;
    border: dashed 1px black; /* Removes border */
    border-radius: 8px;
    background-color: #f3f3f3; /* Light background for contrast */
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none; /* Removes default browser styles */
    font-family: inherit;
    text-align: left;
    outline: none; /* Removes default focus border */
    align-self: center;
}

#edit-font-family-select:hover {
    background-color: #e0e0e0; /* Slight color change on hover */
}

#edit-font-family-select:focus {
    background-color: #d6d6d6; /* More contrast when focused */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Soft glow */
}

/* Style the dropdown options */
#edit-font-family-select option {
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
}

input[type="number"] {
    width: 50px;
    height: 40px;
    border-radius: 5px; /* Slight rounding */
    border: 1px solid #ccc;
    font-size: 14px;
    text-align: center;
    padding: 2px;
    outline: none;
    box-sizing: border-box; /* Ensures padding doesn't affect size */
  }  

#modal {
    z-index: 1001;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  
  #modal > div {
    background: #ffffff00;
    width: 100%;
    height: 100%;
    padding-left: 20vw;
    padding-top: 20vh;
  }

  #modal-iframe {
    background-color: white;
    border-radius: 0px;
    border: 1px dashed black;
  }

/* Styling for the button */
#add-rectangle-btn {
    position: fixed;
    top: 237px;
    left: 37px;
    width: 40px;
    height: 40px;
    padding: 0px;
    margin: 0px;
    background-color: #ffffff;
    color: #000000;
    border: 1px dotted #000000;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.25em;
    cursor: pointer;
    border-radius: 50%;
    /* position: absolute; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

#add-rectangle-btn:hover {
    border-radius: 0px;
    font-size: 1em;
}

#add-rectangle-btn.open {
    border-radius: 50%;
    font-size: 1em;
}

#add-rectangle-btn.open:hover {
    border-radius: 0px;
}

#shape-menu {
    position: fixed;
    top: 0px;
    left: 60px;
    /* opacity: 50%; */
    transition: 0.3s;
    border: #000 none 1px;
    border-radius: 10px;
}

#open-shape-menu-btn.open {
    background-color: #000000;
    color: #ffffff;
    border: #000 none 1px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transform: translate(10px, 0px);
}

#shape-menu.visible {
    /* opacity: 100%; */
    background-color: #000;
}

#shape-menu.visible button{
    background-color: #000000 !important;
    color: #ffffff !important;
}

#shape-menu button {
    padding: 10px;
    font-size: 1.5em;
    width: 50px;
    background-color: #ffffff00 !important;
    color: #000000 !important;
}

#shape-menu button:first-of-type {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#shape-menu button:first-of-type:hover {
    border-radius: 0px;
}

#shape-menu button:last-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#shape-menu button:last-of-type:hover {
    border-radius: 0px;
}

#menu-buttons {
    cursor: pointer;
    position: fixed;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    /* position: absolute; */
    top: 279px; /* Adjust positioning as needed */
    left: 37px;
    /* background-color: #0099ff; */
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px dotted #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* border: 1px black solid; */
    visibility: hidden; /* Start hidden */
    opacity: 0;         /* Fully transparent */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform ease 300ms;
}

#menu-buttons.visible {
    visibility: visible; /* Visible when toggled */
    opacity: 1;          /* Fully opaque */
    transform: translate(0px, 10px);
}

#menu-buttons button {
    cursor: pointer;
    /* background-color: #0099ff; */
    background-color: white;
    border: none;
    margin: 0px;
    padding: 10px;
    color: #000000;
    font-size: 1.5em;
    font-family: 'Times New Roman', Times, serif;
    transition: transform ease 300ms;
}

#menu-buttons button:hover {
    border-radius: 10px;
    border: 1px dotted black;
    padding: 9px;
    transform: translate(10px, 0px);
}

#menu-buttons button:first-of-type {
    padding-top: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#menu-buttons button:first-of-type:hover {
    border-radius: 10px;
}

#menu-buttons button:last-of-type {
    padding-bottom: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
#menu-buttons button:last-of-type:hover {
    border-radius: 10px;
}


.menu-hidden {
    display: none;
}

/* Flexbox layout for the container */
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.right-side-container {
    /* flex: 1; */
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.editable.hidden {
    width: 0px;
    height: 0px;
    opacity: 0;
    will-change: content;
    /* transform: translate(0px, 10px); */
}

#toggle-editor {
    position: fixed;
    z-index: 1000;
    top: 260px;
    right: 60px;
    width: 40px;
    height: 40px;
    padding: 0px;
    margin: 0px;
    background-color: #0099ff;
    border-radius: 0px;
    border-radius: 50%;
    /* border-bottom-left-radius: 50%; */
    color: #ffffff;
    font-size: 1em;
    border: 1px none #000000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

#toggle-editor:hover {
    border-radius: 0px;
    border: 1px none #000000;
}

#toggle-editor.closed:hover {
    background-color: #0099ff;
    border: 1px solid #000000;
    border-radius: 0px;
    color: #ffffff;
    font-size: 1em;
}

#toggle-editor.closed {
    top: 235px;
    right: 35px;
    border: 1px solid #000000;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    font-size: 1.25em;
}

/* Code container styles */

.code-container {
    height: 100vh;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base styles for both editable and uneditable sections */
.code-section {
    background-color: #ffffff;
    width: 48vw;
    height: 96vh;
    margin: 0px;    
    border: none;
    padding: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.75em; /* Consistent font size for all sections */
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 2; /* Ensure consistency in line spacing */
    z-index: 999;
    box-shadow: 0px 0px 8px #888888;
}

/* Specific styles for uneditable sections */
.uneditable {
    color: #888;  /* Lighter gray to indicate it's uneditable */
    pointer-events: none;  /* Prevent interaction */
    user-select: none;  /* Prevent selection */
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    margin-top: 0px;
    margin-bottom: 0px;

    display: none;
}

/* Specific styles for editable section */
.editable {
    position: fixed;
    top: 240px;
    right: 40px;
    width: 400px;
    height: 400px;
    padding: 40px;
    margin: 0px;
    color: #00000078;  /* Normal black text for editable section */
    overflow-y: scroll;
    overflow-x: scroll;
    scrollbar-color: #0099ff rgba(0, 0, 0, 0);
    scrollbar-width: thin;
    border: 1px none#ff99ff;
    border-radius: 40px;
    pointer-events: none;  /* Prevent interaction */
    opacity: .001;
    transition: 0.3s ease;
}

.editable:focus-visible {
    outline: none;
    background-color: #3498db55; /* Something to get the user's attention */
    caret-color: #0099ff;
    font-weight: 600;

  }

.highlight {
    border-radius: 5px;
    background-color: #ff99ff;
    color: black;
}

.bold {
    font-weight: 900;
}

@media screen and (max-width: 990px) {
    .repeated-options {
        display: none;
    }

    #save-information {
        display: none;
    }

    .left {
        width: 35vw;
    }

    .right {
        width: 65vw;
    }
}

@media (max-width: 919px) {
    :root {
        --toolbar-height: 260px;
    }

    .edit-options {
        height: 110px;
    }

    #add-rectangle-btn {
        top: 312px;
    }

    #menu-buttons.visible {
        transform: translate(0px, 85px);
    }
}

@media screen and (max-width: 774px) {
    .quick-desc {
        display: none;
    }
}

@media screen and (max-width: 680px) {
    #website-name {
        display: none !important;
    }

    #file-name {
        display: none !important;
    }

    #greet {
        display: none !important;
    }

    #greet {
        display: none !important;
    }
}

@media screen and (max-width: 630px) {
    #html-editor {
        width: 50vw;
    }

    /* #toggle-editor {
        display: none !important;
    } */

    #modal > div {
        padding-top: 5vh;
      }
}

@media (max-width: 481px) {
    :root {
        --toolbar-height: 305px;
    }

    .edit-options {
        height: 155px;
    }

    #add-rectangle-btn {
        top: 387px;
    }

    #menu-buttons.visible {
        transform: translate(0px, 160px);
    }

    #info-overlay {
        text-align: right;
        left: unset !important;
        right: 10px;
    }
}

@media screen and (max-width: 460px) {
    .login-to-save {
        display: none;
    }

}

@media screen and (max-width: 375px) {
    .right {
        width: 0vw;
        justify-content: right;
    }
}