/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*:focus {
    outline: 3px solid #4ef0af; 
    outline-offset: 2px;        
}
:root {
    --white:rgb(255, 255, 255);
    --red:rgb(179, 13, 38);
    --very-light-red:rgb(255, 236, 239);
    --green:rgb(13, 179, 66);
    --light-green:rgb(195, 255, 214);
    --very-light-green:rgb(229, 255, 237);
    --black:rgb(26, 26, 26);
    --dark-grey:rgb(102, 102, 102);
    --grey:rgb(179, 179, 179);
    --light-grey:rgb(206, 206, 206);
    --very-light-grey:rgb(236, 236, 236);
    --dark-gold:rgb(152, 128, 49);
    --gold:rgb(212,175,55);
    --light-gold:rgb(220, 200, 133);
    --very-light-gold:rgb(240, 230, 196);
    --dark-blue:rgb(65, 66, 98);
    --blue:rgb(36, 38, 103);
    --background-color:rgb(242, 242, 242);
}

/* FONTS */
.font-ral{
    font-family: 'Ral', sans-serif;
}
.font-rali{
    font-family: 'RalI', sans-serif;
}
.font-mcb{
    font-family: 'MC Black', sans-serif;
}
.font-mci{
    font-family: 'MC Light', sans-serif;
}
.font-mc{
    font-family: 'MC', sans-serif;
}
.font-q{
    font-family: 'Q', sans-serif;
}
.font-as{
    font-family: 'AS', sans-serif;
}
.thick{
    font-weight: 600;
}
.medium{
    font-weight: 500;
}
.light{
    font-weight: 200;
}


/* HTML TAGS */

body {
    font-family: 'ra', sans-serif;
    line-height: 1.6rem;
    background-color: var(--background-color);
    color: var(--black);
    margin: 0 auto;
    padding: 0;
    font-weight:400;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: var(--black);
    transition: color 0.3s ease;}

a:hover {
    color: var(--green);
}

a img:hover {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

}
/* CLASSES */

.background{
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fw-ac{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.background-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.background-color{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Below img-div */
}
.background-gradient{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* above everything */
}
.card-content{
    position: relative;
    z-index: 3;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*min-height: 100%;*/
    box-sizing: border-box;
    width: 100%;
}
.z-4{
    z-index: 4;
}
.z-5{
    z-index: 5;
}
.z-6{
    z-index: 6;
}

/* FOOTER */
.footer {
    padding: 16px;
}
.footer-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.footer-logo{
    height: 100px;
    width: auto;
    padding: 0 32px;
}
.footer-sections{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
}
.footer-section{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 4px;
    width: 100%;
    max-width: 150px;
    margin-bottom:16px;
}
.footer-title{
    font-weight: 900;
    margin-bottom: 4px;
}
.footer-title:hover{
    color: var(--green);
    cursor: pointer;
}
.footer-link{
    font-weight: 300;
}
.footer-link:hover{
    color: var(--green);
    cursor: pointer;
}

.container-fullview{
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 100vh;
}
.container-66view{
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 66vh;
}

.container-fullwidth{
    width: 100%;
    margin: 0;
    
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding: 0;
}
.padding-small{
    padding: 4px 8px;
}
.card {
    background-color: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-glass {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* FLEX */
.flex{
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-nowrap{
    flex-wrap: nowrap;
}
.flex-nogap{
    gap:0px;
}
.flex-centeredincolumn{
    flex-direction: column;
    justify-content: center;
    gap:16px;
}
.flex-centeredinrow{
    flex-direction: row;
    justify-content: center;
    gap:8px;
}
.flex-spreadinrow{
    justify-content: space-between;
    align-items: center;
    width:100%;
}
.flex-leftinrow{
    justify-content: flex-start;
    align-items: center;
}
.flex-leftincolumn{
    flex-direction: column;
    justify-content: flex-start;
}
.flex-rightincolumn{
    flex-direction: column;
    justify-content: flex-end;
}
.flex-rightinrow{
    justify-content: flex-end;
    align-items: center;
}

/* Navigation Bar */
nav {
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 0px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--black);
}

nav .icon {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    overflow: hidden;
}

nav .icon svg {
    fill: white;
    transition: fill 0.3s ease;
}

nav .icon:hover svg {
    fill: var(--black);
}


/* Buttons */
button, .button {
    background-color: #1abc9c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, .button:hover {
    background-color: #16a085;
    transform: translateY(-2px);
}

button:active, .button:active {
    transform: translateY(0);
}

.button.secondary {
    background-color: transparent;
    border: 2px solid #1abc9c;
    color: #1abc9c;
}

.button.secondary:hover {
    background-color: #1abc9c;
    color: white;
}

.button-effect{
    transition: all 0.3s ease, transform 0.2s ease;
}
.button-effect:hover{
    background-color: var(--very-light-green);
    transform: translateY(-2px);
    cursor: pointer;
}
.smallbutton {
    padding: 8px;
    border-radius: 8px;
    font-size:0.9rem;
}
.minibutton {
    padding: 4px;
    border-radius: 4px;
    font-size:0.8rem;
    color:var(--dark-grey);
    background-color: var(--light-grey);
}
.minibutton:active {
    padding: 4px;
    border-radius: 4px;
    font-size:0.8rem;
    background-color: var(--green);
}
.minibutton:hover {
    cursor:pointer;
    background-color: var(--very-light-green);
    color:var(--black);
}
.miniroundbutton {
    padding: 4px;
    border-radius: 8px;
}
.icon-button{
    padding: 8px;
    border-radius: 8px;
}
.icon-button svg{
    width: 24px;
    height: 24px;
    color:white;
}
.button-tab{
    background-color: white;
    color: var(--black);
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.tabs {
    gap:8px;
    padding:4px;
    overflow:hidden;
    overflow-x:auto;
}
.icon-glass-button{
    padding: 8px;
    border-radius: 8px;
    background-color: rgba(244, 242, 246, 0.5);
    color: rgba(0, 0, 0, 0.7);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding-bottom:1px;
}
.icon-glass-button svg{
    width: 24px;
    height: 24px;
    color:var(--black);
}
.icon-glass-button:hover{
    background-color: rgba(229, 255, 237, 0.8);
    color: rgba(0, 0, 0, 0.9);

}

/* SVG */
.svg-currentcolor {
    stroke: currentColor;
    fill: none;
}


/* Menus */
.menu-button{ 
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.menu-button:hover{
    background-color: var(--green);
    color: white;
}
.menu-button:hover svg rect {
    fill: #333;
}

.modal-menu-left {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}
.modal-menu-left.active {
  display: block;
}
.modal-menu-left.fade-in {
  opacity: 1;
}

.modal-menu-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.modal-menu-left ul li {
    margin-bottom: 8px;
}
.modal-menu-left ul li a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}
.modal-menu-left ul li a:hover {
    color: var(--green);
}
/* Menu */
.menu-left {
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
}

.modal-menu-left.fade-in .menu-left {
    transform: translateX(0);
}

.menu-close{
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    font-size: 24px;
    color: var(--black);
    transition: color 0.3s ease;
}
.menu-close:hover{
    color: var(--green);
}
.menu-logo{
    cursor: pointer;
    margin-left: 16px;
    margin-top: 16px;
}
.menu-items{
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-items li{
    margin-bottom: 8px;
}
.menu-items li a{
    text-decoration: none;
    color: var(--black);
    transition: color 0.3s ease;
}
.menu-items li a:hover{
    color: var(--green);
}


/* Menu Content */
.menu-left nav {
  padding: 60px 20px 20px;
}

.menu-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-left li {
  margin-bottom: 15px;
}

.menu-left a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.menu-left a:hover {
  color: var(--green);
}


/* Profile pic */
.profile-ficha {
    width: 150px;
    border-radius: 4px;
    object-fit: cover;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin:0px;
    padding:0px;
    border:rgb(26, 26, 26) solid 1px;
    line-height: 0px;
    height:180px;
    align-content:center;
    text-align: center;
}
.profile-ficha img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-ficha:hover {
    border: var(--green) solid 1px;
    transition: border 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}
/* WhatsApp-like Conversation Bubbles */
.notas-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.notas-list::-webkit-scrollbar {
    width: 10px;
}

.notas-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notas-list::-webkit-scrollbar-thumb {
    background: #888;
}

.notas-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.nota {
    max-width: 70%;
    padding: 12px;
    border-radius: 12px;
    position: relative;
    word-wrap: break-word;
}

.nota.self {
    background-color: #5a7670;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 0px;
    margin-right:10px;
}

.nota.other {
    background-color: #d7eae2;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 0px;
}

.nota.self small {
    display: block;
    margin-top: 4px;
    font-size: 0.775rem;
    color: #c2c9c5;
}
.nota.other small {
    display: block;
    margin-top: 4px;
    font-size: 0.775rem;
    color: #454544;
}


.preview-box-border{
    border:1px dashed var(--light-grey);
}

.show-when-print{
    display: none;
}

/* Forms */
form {
    background-color: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

fieldset {
    border: none;
    margin-bottom: 16px;
}

legend {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

label {
    font-size: 0.9rem;
    font-weight: 300;
    color: #2c3e50;

} 

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="file"],
input[type="number"],
textarea,
select {
    width: 100%;
    /*margin-top:6px;*/
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--black);
    font-weight: 400;
    transition: border-color 0.3s ease;
}
/*
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="file"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: #1abc9c;
    outline: none;
} */

textarea {
    resize: vertical;
    min-height: 120px;
}
.input-force-fullwidth{
    max-width: 100%;
    min-width: 100%;
}
.input-normal{
    min-width: 320px;
}
.input-force-normal{
    max-width: 320px;
    min-width: 320px;
}
.input-medium{
    min-width: 200px;
}
.input-force-medium{
    max-width: 200px;
    min-width: 200px;
}
.input-small{
    min-width: 100px;
}
.input-force-small{
    max-width: 100px;
    min-width: 100px;
}
.input-tiny{
    min-width: 60px;
}
.input-force-tiny{
    max-width: 60px;
    min-width: 60px;
}
.input-legend{
    font-size: 0.9rem;
    font-weight: 300;
    color: #2c3e50;
}
.input-row{
    padding-bottom:8px;
    margin-top:8px;
    /*border-bottom: var(--light-grey) solid 1px;*/
}

/* Colors */
.white{
    background-color: white;
    color:var(--black);
}
.whitetxt{
    color:white;
}
.black{
    background-color: var(--black);
    color:white;
}
.blacktxt{
    color:var(--black);
}
.red{
    background-color: var(--red);
    color:white;
}
.verylightred{
    background-color: var(--very-light-red);
    color:var(--black);
}
.redtxt{
    color:var(--red);
}
.green{
    background-color: var(--green);
    color:white;
}
.green:hover{
    color:black;
}
.verylightgreen{
    background-color: var(--very-light-green);
    color:var(--black);
}
.verylightgreen:hover{
    background-color: var(--green);
    color:var(--white)
}
.greentxt{
    color:var(--green);
}
.grey{
    background-color: var(--grey);
    color:var(--very-light-grey)
}
.grey:hover{
    color:var(--white)
}
.greytxt{
    color:var(--grey);
}
.lightgrey{
    background-color: var(--light-grey);
    color:var(--dark-grey)
}
.lightgrey:hover{
    color:var(--black);
    background-color: var(--very-light-grey);

}
.verylightgrey{
    background-color: var(--very-light-grey);
    color:var(--grey)
}
.verylightgrey:hover{
    color:var(--white)
}
.gold{
    background-color: var(--gold);
    color:var(--very-light-gold)
}
.gold:hover{
    color:var(--white)
}
.goldtxt{
    color:var(--gold);
}
.lightgold{
    background-color: var(--light-gold);
    color:var(--dark-gold)
}
.lightgold:hover{
    color:var(--white)
}
.verylightgold{
    background-color: var(--very-light-gold);
    color:var(--gold)
}
.verylightgold:hover{
    color:var(--white)
}
.lightgoldtxt{
    color:var(--light-gold);
}
.darkmode{
    background-color: var(--black);
    color:var(--grey);
}
.darkmode a{
    color:var(--grey);
}
.darkmode a:hover{
    color:white
}


/* text */
.txtc{
    text-align: center;
}
.txtl{
    text-align: left;
}
.txtr{
    text-align: right;
}
.txt-big-title{
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.txt-title{
    font-size: 1.6rem;
    line-height: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.txt-subtitle{
    font-size: 1.4rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.txt-normal{
    font-size: 1rem;
}
.txt-small{
    font-size: 0.8rem;
}
.txt-tiny{
    font-size: 0.6rem;
}

/* display */
/*
.no-print{
    display: none;
} */
.no-border{
    border: none;
}
.w100{
    width: 100%;
}
.horizontal-scroll{
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.thumbnail {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
.thumbnail:hover{
    cursor: pointer;
}

.browser-title{
    background-color:#333;
    color:#fff;
    font-size:0.9rem;
    font-weight:300;
    padding:8px;
    padding-left:16px;
    padding-right:16px;
    border:#666 1px solid;
    border-radius:16px;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:0px
}
.spinning-loader{
    width:50px;
    height:50px;
    overflow: hidden;
    animation: spin 1.3s linear infinite;
}
.times-right{
    position: relative;
    top: 0px;
    right: 0px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* CALENDAR */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

th, td {
    padding: 8px;
    white-space: nowrap;
    word-break:break-word;
    /*border-bottom: 1px solid #ecf0f1;*/
}

th {
    background-color: #34495e;
    color: white;
    font-weight: 600;
}

tr:hover {
    background-color: #f4f4f9;
}

.product-card{
    min-width:320px;
    max-width:320px;
    background-color:white;
    padding:8px;
    align-items:flex-start;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius:8px;
    min-height:78px;
}
.product-card:hover{
    transform: translateY(-2px);
    background-color: var(--very-light-green);
    cursor:pointer;
    transition: all 0.2s ease-in-out;
}
.icon-stat-container{
    gap:2px;
    width:45px;
    height:50px;
    border-radius:8px;
    background-color:var(--very-light-grey);
    align-items:center;
}
.icon-stat-icon{
    scale:0.5;
    width:24px;
    height:24px;
    color:var(--grey);
    text-align: center;
    margin-left:-12px;
}
.icon-stat-txt{
    font-size:0.8rem;
    color:var(--grey);
    text-align: center;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px;
    margin-bottom: 8px;
    flex-wrap:nowrap;
}
.toggle-container:hover{
    background-color: #f5f5f5;
}

.toggle-label-text {
    min-width: 150px;
    font-size: 14px;
}

.toggle-value-label {
    font-size: 14px;
    color: #555;
}

/* CSS Toggle Switch */
.toggle-switch-css {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch-css .toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider-css {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 24px;
}

.toggle-slider-css:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-slider-css {
    background-color: #4CAF50;
}

.toggle-input:checked + .toggle-slider-css:before {
    transform: translateX(26px);
}

/* Hover effect */
.toggle-switch-css:hover .toggle-slider-css {
    opacity: 0.9;
}

/* modals */
.full-page-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-content{
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width:1000px;
    min-width:480px;
    left:50%;
    top:50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
.dn{
    display:none;
}
.erase-frame{
    padding:0;
    margin:0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSE */
.success{
    color: green;
    background-color: rgb(167, 255, 195);
    padding:8px 32px;
}
.error{
    color: red;
    background-color: rgb(248, 189, 189);
    padding:8px 32px;
}

.wep-page-name{
    font-size:18px;
    font-weight:500;
    color:var(--black);
    padding:4px 8px;
    border-radius:2px;
    border: 2px solid #687b7bff;
    width:198px;
    text-align: center;
    overflow:hidden;
}
.wep-page-name:hover{
    color:var(--green);
    background-color: var(--light-green);
    cursor:pointer;
    transition: background-color 0.1s ease-in-out;
}
.wep-page{
    font-size:14px;
    font-weight:400;
    color:var(--black);
    border-radius:2px;
    text-align: center;
    border: 1px solid var(--black);
    align-items:flex-start;
    position:relative;
    width:188px;
    padding:4px 8px;
    margin-bottom:8px;
    margin-left:-8px;
}
.wep-page:hover{
    color:var(--green);
    background-color: var(--light-green);
    cursor:pointer;
    transition: background-color 0.1s ease-in-out;
}
.wep-page-section{
    font-size:16px;
    font-weight:300;
    color:var(--black);
    border-radius:2px;
    text-align: center;
    border: 1px solid var(--black);
    align-items:flex-start;
    min-height:100px;
    position:relative;
    overflow:hidden;
    width:288px;
    padding:0;
}
.wep-page-section:hover{
    color:var(--green);
    background-color: var(--light-green);
    cursor:pointer;
    transition: background-color 0.1s ease-in-out;
}
.wep-page-section-name{
    font-size:16px;
    line-height:15px;
    font-weight:300;
    color:var(--black);
    padding:3px 8px;
    width:144px;
    text-align: center;
    overflow:hidden;
}
.wep-page-section-image{
    margin-bottom:-7px;
    position:relative;
    min-height:100px;
    max-height:100px;
    min-width:144px;
    max-width:144px;
    margin:0;
    padding:0
}
.wep-icon-branch{
    width:48px;
    height:48px;
    color:var(--black);
    padding:0;
    scale:0.5;
}
.wep-icon{
    color:var(--black);
    padding:0;
    scale:0.5;
    margin:-14px;
}
.wep-icon-plus{
    width:48px;
    height:48px;
    border-radius: 24px;
    color:var(--black);
    padding:0;
    scale:0.6;
    margin-top:-12px;
    margin-bottom:-12px;
}
.wep-icon-plus:hover{
    cursor:pointer;
    color:var(--green);
    transition: color 0.1s ease-in-out;
    background-color: var(--light-green);
}
.wep-icon-reference{
    position:absolute;
    bottom:-12px;
    left:-8px;
    color:blue;
    opacity:0.7;
    scale:0.6
}
.wep-icon-button{
    width:48px;
    height:48px;
    border-radius: 24px;
    color:var(--black);
    padding:0;
    scale:0.6;
    margin-right:-12px;
}
.wep-icon-button:hover{
    cursor:pointer;
    color:var(--green);
    transition: color 0.1s ease-in-out;
    background-color: var(--light-green);
}
.wep-rotate-180{
    transform: rotate(180deg);
}
.layout-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35mm, 1fr));
}
.layout-option {
    cursor: pointer;
    transition: all 0.1s ease;
    width: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin:8px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    height:90px;
}
.layout-option:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}
.layout-option.selected {
    box-shadow: 0 8px 12px rgba(22, 150, 18, 0.8);
}
.layout-option input {
    display: none;
}
.layout-option img {
    width: 125px;
}
.layout-name{
    font-size:14px;
    font-weight:300;
    color:var(--black);
    padding:4px 8px;
}
.eye-check{
    background-color:rgba(210, 229, 206, 1);
}
.eye-cross{
    background-color:rgba(247, 198, 198, 1);
}


/* RESPONSIVE DESIGN */
/* Extra small devices (phones, 480px and down) */
@media only screen and (max-width: 480px) {
    form{
        padding:8px;
    }
    .container-fullwidth {
        padding-top:4px;
    }
    .container-66view {
        height: 80vh;
    }
    .container {
        margin: 0px;
        padding: 0px 4px;
    }
    .modal-content{
        max-width: 100%;
        min-width: 100%;
    }
    th, td {
    padding: 0px;
    }
    
    .menu-left{
        width: 200px;
    }
    .footer-container{
        flex-direction: column;
    }
    .footer-logo{
        width:100%;
        padding: 0;
        text-align:right;
        margin-bottom: 16px;
    }
    .footer-sections{
        flex-wrap:wrap;
    }
}

/* Small devices (portrait tablets and large phones, 481px and up) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .container-66view {
    height: 75vh;
    }
    .container {
        margin: 0px;
        padding: 0px 2px;
    }
    .modal-content{
        max-width: 650px;
        min-width: 481px;
    }
}


@media print {
        @page {
            size: 210mm 297mm;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: none;
            -webkit-print-color-adjust:exact !important;
            print-color-adjust:exact !important;
            scale:1;
            margin:0;
            padding: 0;
            top:0px;
            /*box-sizing: border-box;*/
        }
        .no-print {
            display: none;
        }
        .show-when-print{
            display: block;
        }
        .shrink-to-print{
            scale:0.8;
        }
        img{
            filter:saturate(105%);
        }
        .a4-wrap{
            width:297mm;
            height:210mm;
            scale:1;
            margin:0px 0px 0px 0px;
            padding: 0px 0px 0px 0px;
            left:0px;
            margin-top:0mm;
            margin-left:0mm;
            box-shadow: none;
            display: block;
            position:relative;
            box-sizing: border-box;
            page-break-after: always;
        }
        .a4-container{
            width:297mm;
            height:210mm;
            scale:1;
            margin:0px 0px 0px 0px;
            padding: 0px 0px 0px 0px;
            left:0px;
            box-shadow: none;
            position:relative;
            box-sizing: border-box;
        }
        .preview-box-border{
            border:none;
        }
    }